Skip to content

Instantly share code, notes, and snippets.

@mayurah
Created March 13, 2024 12:47
Show Gist options
  • Save mayurah/869686d3fff05715c8b95a3c6b2409f0 to your computer and use it in GitHub Desktop.
Save mayurah/869686d3fff05715c8b95a3c6b2409f0 to your computer and use it in GitHub Desktop.
tmp
# Create a folder
$ mkdir actions-runner && cd actions-runner# Download the latest runner package
$ curl -o actions-runner-linux-x64-2.314.1.tar.gz -L https://github.com/actions/runner/releases/download/v2.314.1/actions-runner-linux-x64-2.314.1.tar.gz# Optional: Validate the hash
$ echo "6c726a118bbe02cd32e222f890e1e476567bf299353a96886ba75b423c1137b5 actions-runner-linux-x64-2.314.1.tar.gz" | shasum -a 256 -c# Extract the installer
$ tar xzf ./actions-runner-linux-x64-2.314.1.tar.gz
# Create the runner and start the configuration experience
$ ./config.sh --url https://github.com/splunk/splunk-3D-graph-network-topology-viz --token AGGDLRGPIDMG32CDWTUHTNDF6GWFG# Last step, run it!
$ ./run.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment