mirror of
https://github.com/varunsridharan/actions-toolkit.git
synced 2024-11-10 09:13:05 +08:00
10 lines
No EOL
291 B
Bash
10 lines
No EOL
291 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
## Install Required Dependencies
|
|
apk add bash curl git lftp rsync unzip wget zip tree
|
|
|
|
## Clone Github Toolkit Files To /gh-toolkit/
|
|
wget https://raw.githubusercontent.com/varunsridharan/actions-toolkit/main/setup-toolkit.sh
|
|
chmod uga+x setup-toolkit.sh
|
|
sh setup-toolkit.sh |