Skip to content

Instantly share code, notes, and snippets.

@socheatsok78
Last active February 2, 2022 09:54
Show Gist options
  • Save socheatsok78/f357af441906804d9420f4f441fc3301 to your computer and use it in GitHub Desktop.
Save socheatsok78/f357af441906804d9420f4f441fc3301 to your computer and use it in GitHub Desktop.
#!/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