Last active
February 2, 2022 09:54
-
-
Save socheatsok78/f357af441906804d9420f4f441fc3301 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
OS=linux | |
ARCH=x64 | |
RUNNER_VERSION=2.287.1 | |
mkdir ${HOME}/actions-runner | |
echo "[Info] Downloading GitHub Action Runner" | |
curl -o actions-runner-${OS}-${ARCH}-${RUNNER_VERSION}.tar.gz \ | |
-L https://github.com/actions/runner/releases/download/v${RUNNER_VERSION}/actions-runner-${OS}-${ARCH}-${RUNNER_VERSION}.tar.gz | |
echo "[Info] Extracting archive" | |
tar xzf ./actions-runner-${OS}-${ARCH}-${RUNNER_VERSION}.tar.gz -C ${HOME}/actions-runner |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment