apps: add helper script to get build app from github actions

This commit is contained in:
Phantop 2024-06-06 11:30:08 -04:00
parent 59f6169e63
commit 5309dfd607

7
apps/getapp Executable file
View file

@ -0,0 +1,7 @@
#!/bin/sh
set -e # exit on failure
IFS=$(printf '\n\t') # smarter ifs
gh run download -n "$1"
chmod +x "$1"
mv "$1" "$(dirname "$(realpath "$0")")/bin"