summary refs log tree commit diff
path: root/pkgs/tools/misc/ntfy-sh/update.sh
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/ntfy-sh/update.sh')
-rwxr-xr-xpkgs/tools/misc/ntfy-sh/update.sh24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/tools/misc/ntfy-sh/update.sh b/pkgs/tools/misc/ntfy-sh/update.sh
new file mode 100755
index 0000000000000..8d416981e44ce
--- /dev/null
+++ b/pkgs/tools/misc/ntfy-sh/update.sh
@@ -0,0 +1,24 @@
+#!/usr/bin/env nix-shell
+#! nix-shell -i bash -p nodePackages.node2nix curl jq nix
+
+set -euo pipefail
+# cd to the folder containing this script
+cd "$(dirname "$0")"
+
+CURRENT_VERSION=$(nix-instantiate ../../../../. --eval --strict -A ntfy-sh.version | tr -d '"')
+TARGET_VERSION="$(curl -sL https://api.github.com/repos/binwiederhier/ntfy/releases/latest | jq --exit-status -r ".tag_name")"
+
+if [[ "v$CURRENT_VERSION" == "$TARGET_VERSION" ]]; then
+    echo "ntfy-sh is up-to-date: ${CURRENT_VERSION}"
+    exit 0
+fi
+
+echo "ntfy-sh: $CURRENT_VERSION -> $TARGET_VERSION"
+
+rm -f package.json package-lock.json
+curl -sLO https://github.com/binwiederhier/ntfy/raw/$TARGET_VERSION/web/package.json
+curl -sL -o package-lock-temp.json https://github.com/binwiederhier/ntfy/raw/$TARGET_VERSION/web/package-lock.json
+
+./generate-dependencies.sh
+
+rm ./package-lock-temp.json