Skip to content

Commit 5309dfd

Browse files
committed
apps: add helper script to get build app from github actions
1 parent 59f6169 commit 5309dfd

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

apps/getapp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/sh
2+
set -e # exit on failure
3+
IFS=$(printf '\n\t') # smarter ifs
4+
5+
gh run download -n "$1"
6+
chmod +x "$1"
7+
mv "$1" "$(dirname "$(realpath "$0")")/bin"

0 commit comments

Comments
 (0)