summary refs log tree commit diff
path: root/pkgs/applications/misc/ArchiSteamFarm/update.sh
blob: 53d3ee6641912b7514e4138265accb5f340a2fcf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env nix-shell
#!nix-shell -I nixpkgs=./. -i bash -p curl gnused jq common-updater-scripts
set -euo pipefail
cd "$(dirname "${BASH_SOURCE[0]}")"

new_version="$(curl ${GITHUB_TOKEN:+" -u \":$GITHUB_TOKEN\""} -s "https://api.github.com/repos/JustArchiNET/ArchiSteamFarm/releases" | jq -r  'map(select(.prerelease == false)) | .[0].tag_name')"
old_version="$(sed -nE 's/\s*version = "(.*)".*/\1/p' ./default.nix)"

if [[ "$new_version" == "$old_version" ]]; then
  echo "Already up to date!"
  if [[ "${1-default}" != "--deps-only" ]]; then
    exit 0
  fi
fi

asf_path=$PWD
cd ../../../..

if [[ "${1:-}" != "--deps-only" ]]; then
    update-source-version ArchiSteamFarm "$new_version"
fi

$(nix-build -A ArchiSteamFarm.fetch-deps --no-out-link)

cd "$asf_path/web-ui"
./update.sh