Difference between revisions of "GitHub self hosted runner"

From wikieduonline
Jump to navigation Jump to search
Line 1: Line 1:
 
* https://docs.github.com/en/actions/hosting-your-own-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-a-repository
 
* https://docs.github.com/en/actions/hosting-your-own-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-a-repository
 
<code>Settings -> Actions -> [[Runners]]</code>
 
<code>Settings -> Actions -> [[Runners]]</code>
 +
 +
== macOS ==
 +
# Create a folder
 +
$ mkdir actions-runner && cd actions-runner# Download the latest runner package
 +
$ curl -o actions-runner-osx-x64-2.283.1.tar.gz -L https://github.com/actions/runner/releases/download/v2.283.1/actions-runner- osx-x64-2.283.1.tar.gz# Optional: Validate the hash
 +
$ echo "c6f04c7c2c0f1706810fa15e5c0cd773310acbfe60dd4cd88459cbefa9a4bb75  actions-runner-osx-x64-2.283.1.tar.gz" | shasum -a 256 -c# Extract the installer
 +
$ tar xzf ./actions-runner-osx-x64-2.283.1.tar.gz
  
 
== Related ==
 
== Related ==

Revision as of 11:23, 7 October 2021

Settings -> Actions -> Runners

macOS

# Create a folder
$ mkdir actions-runner && cd actions-runner# Download the latest runner package
$ curl -o actions-runner-osx-x64-2.283.1.tar.gz -L https://github.com/actions/runner/releases/download/v2.283.1/actions-runner- osx-x64-2.283.1.tar.gz# Optional: Validate the hash
$ echo "c6f04c7c2c0f1706810fa15e5c0cd773310acbfe60dd4cd88459cbefa9a4bb75  actions-runner-osx-x64-2.283.1.tar.gz" | shasum -a 256 -c# Extract the installer
$ tar xzf ./actions-runner-osx-x64-2.283.1.tar.gz

Related

See also

Advertising: