3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/monitoring/uptime-kuma/update.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
930 B
Bash
Raw Normal View History

2022-09-23 05:30:54 +01:00
#!/usr/bin/env nix-shell
#!nix-shell -i bash -p curl common-updater-scripts nodePackages.node2nix gnused nix coreutils jq
set -euo pipefail
latestVersion="$(curl -s ${GITHUB_TOKEN:+-u ":$GITHUB_TOKEN"} "https://api.github.com/repos/louislam/uptime-kuma/releases?per_page=1" | jq -r ".[0].tag_name" | sed 's/^v//')"
2022-09-23 05:30:54 +01:00
currentVersion=$(nix-instantiate --eval -E "with import ./. {}; uptime-kuma.version or (lib.getVersion uptime-kuma)" | tr -d '"')
if [[ "$currentVersion" == "$latestVersion" ]]; then
echo "uptime-kuma is up-to-date: $currentVersion"
exit 0
fi
update-source-version uptime-kuma 0 0000000000000000000000000000000000000000000000000000000000000000
update-source-version uptime-kuma "$latestVersion"
2022-12-27 04:20:21 +00:00
store_src="$(command nix-build . -A uptime-kuma.src --no-out-link)"
2022-09-23 05:30:54 +01:00
cd "$(dirname "${BASH_SOURCE[0]}")"
node2nix \
--nodejs-16 \
--lock "$store_src/package-lock.json" \
--composition ./composition.nix