Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
18 lines
530 B
Bash
Executable File
18 lines
530 B
Bash
Executable File
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p curl jq common-updater-scripts
|
|
# shellcheck shell=bash
|
|
set -euo pipefail
|
|
|
|
new_version="$(curl -s "https://api.github.com/repos/retrospy/RetroSpy/releases?per_page=1" | jq -r '.[0].tag_name')"
|
|
new_version=${new_version#v}
|
|
old_version=$(nix-instantiate --eval -A retrospy.version | jq -e -r)
|
|
|
|
if [[ "$new_version" == "$old_version" ]]; then
|
|
echo "Up to date"
|
|
exit 0
|
|
fi
|
|
|
|
update-source-version retrospy "$new_version"
|
|
|
|
eval "$(nix-build . -A retrospy.fetch-deps --no-out-link)"
|