mirror of
https://github.com/varunsridharan/actions-toolkit.git
synced 2024-11-10 17:28:52 +08:00
10 lines
No EOL
271 B
Bash
10 lines
No EOL
271 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
## Install Required Dependencies
|
|
apk add bash git curl unzip wget
|
|
|
|
## 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 |