diff --git a/.github/workflows/updater.sh b/.github/workflows/updater.sh index 72eb5cb..36f8a94 100755 --- a/.github/workflows/updater.sh +++ b/.github/workflows/updater.sh @@ -9,9 +9,6 @@ # Since each app is different, maintainers can adapt its contents so as to perform # automatic actions when a new upstream release is detected. -# Remove this exit command when you are ready to run this Action -exit 1 - #================================================= # FETCHING LATEST RELEASE AND ITS ASSETS #================================================= @@ -67,11 +64,14 @@ echo "Handling asset at $asset_url" # Here we base the source file name upon a unique keyword in the assets url (admin vs. update) # Leave $src empty to ignore the asset case $asset_url in - *"admin"*) - src="app" + *"Linux_aarch64"*) + src="arm64" ;; - *"update"*) - src="app-upgrade" + *"Linux_armv7"*) + src="armhf" + ;; + *"Linux_x86_64"*) + src="amd64" ;; *) src=""