mirror of
https://github.com/Phantop/appdwarf.git
synced 2024-11-09 16:36:01 +00:00
apps: add helper script to get build app from github actions
This commit is contained in:
parent
59f6169e63
commit
5309dfd607
7
apps/getapp
Executable file
7
apps/getapp
Executable 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"
|
Loading…
Reference in a new issue