This commit is contained in:
Chais Fitzwater 2025-01-04 11:27:35 -06:00 committed by GitHub
parent 3854bdea2f
commit fd4ac055f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

8
Folder Normal file
View File

@ -0,0 +1,8 @@
# Create a folder
$ mkdir actions-runner && cd actions-runner
# Download the latest runner package
$ curl -o actions-runner-linux-x64-2.321.0.tar.gz -L https://github.com/actions/runner/releases/download/v2.321.0/actions-runner-linux-x64-2.321.0.tar.gz
# Optional: Validate the hash
$ echo "ba46ba7ce3a4d7236b16fbe44419fb453bc08f866b24f04d549ec89f1722a29e actions-runner-linux-x64-2.321.0.tar.gz" | shasum -a 256 -c
# Extract the installer
$ tar xzf ./actions-runner-linux-x64-2.321.0.tar.gz