mirror of
https://github.com/actions/runner.git
synced 2025-12-15 22:47:01 +00:00
45 lines
1.7 KiB
Markdown
45 lines
1.7 KiB
Markdown
## Features
|
|
- Runner config auth via GitHub.com. (#107) (#117)
|
|
- Adding wrapper action to support post job cleanup, adding checkout v1.1 (#91)
|
|
- Improving terminal experience (#110)
|
|
- Add runner support for cache action. (#120)
|
|
|
|
## Bugs
|
|
- Set GITHUB_ACTIONS in containers. (#119)
|
|
- Fix issue data column/col mismatch. (#122)
|
|
|
|
## Misc
|
|
- Use GitHub actions for CI/PR (#112)
|
|
- Code Cleanup (#123) (#124) (#125)
|
|
|
|
## Agent Downloads
|
|
|
|
| | Package |
|
|
| ------- | ----------------------------------------------------------------------------------------------------------- |
|
|
| Windows x64 | [actions-runner-win-x64-<RUNNER_VERSION>.zip](https://githubassets.azureedge.net/runners/<RUNNER_VERSION>/actions-runner-win-x64-<RUNNER_VERSION>.zip) |
|
|
| macOS | [actions-runner-osx-x64-<RUNNER_VERSION>.tar.gz](https://githubassets.azureedge.net/runners/<RUNNER_VERSION>/actions-runner-osx-x64-<RUNNER_VERSION>.tar.gz) |
|
|
| Linux x64 | [actions-runner-linux-x64-<RUNNER_VERSION>.tar.gz](https://githubassets.azureedge.net/runners/<RUNNER_VERSION>/actions-runner-linux-x64-<RUNNER_VERSION>.tar.gz) |
|
|
|
|
After Download:
|
|
|
|
## Windows x64
|
|
|
|
``` bash
|
|
C:\> mkdir myagent && cd myagent
|
|
C:\myagent> Add-Type -AssemblyName System.IO.Compression.FileSystem ; [System.IO.Compression.ZipFile]::ExtractToDirectory("$HOME\Downloads\actions-runner-win-x64-<RUNNER_VERSION>.zip", "$PWD")
|
|
```
|
|
|
|
## OSX
|
|
|
|
``` bash
|
|
~/$ mkdir myagent && cd myagent
|
|
~/myagent$ tar xzf ~/Downloads/actions-runner-osx-x64-<RUNNER_VERSION>.tar.gz
|
|
```
|
|
|
|
## Linux x64
|
|
|
|
``` bash
|
|
~/$ mkdir myagent && cd myagent
|
|
~/myagent$ tar xzf ~/Downloads/actions-runner-linux-x64-<RUNNER_VERSION>.tar.gz
|
|
```
|