How to register a runner ?
Download
# Create a folder
$ mkdir actions-runner && cd actions-runnerCopied!
# Download the latest runner package
$ curl -o actions-runner-linux-x64-2.325.0.tar.gz -L https://github.com/actions/runner/releases/download/v2.325.0/actions-runner-linux-x64-2.325.0.tar.gz
# Optional: Validate the hash
$ echo "5020xxxxxxd85cxx6059xxxxe0de8fxxx753xxxx9x558exxxxxxd43exex518xx actions-runner-linux-x64-2.325.0.tar.gz" | shasum -a 256 -c
# Extract the installer
$ tar xzf ./actions-runner-linux-x64-2.325.0.tar.gz
Configure
# Create the runner and start the configuration experience
$ ./config.sh --url https://github.com/amit-singh-bisht/lambda-playwright --token AxxxFxxxJ4xxx5BxxxEBxxxIIxxxx
# Last step, run it!
$ ./run.sh
Using your self-hosted runner
# Use this YAML in your workflow file for each job
runs-on: self-hosted
Top comments (0)
Some comments may only be visible to logged-in visitors. Sign in to view all comments.