diff --git a/.github/.DS_Store b/.github/.DS_Store new file mode 100644 index 0000000..1f2c43e Binary files /dev/null and b/.github/.DS_Store differ diff --git a/.github/workflows/updater.sh b/.github/workflows/updater.sh index c4d53fc..f6ab54d 100755 --- a/.github/workflows/updater.sh +++ b/.github/workflows/updater.sh @@ -66,14 +66,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-amd64-filebrowser.tar.gz"*) + src="amd64" ;; - *"update"*) - src="app-upgrade" + *"/linux-arm64-filebrowser.tar.gz"*) + src="arm64" ;; - *) - src="" + *"/linux-armv7-filebrowser.tar.gz"*) + src="armhf" ;; esac