mirror of
https://github.com/actions/runner.git
synced 2025-12-11 04:46:58 +00:00
44 lines
1.8 KiB
Markdown
44 lines
1.8 KiB
Markdown
## Features
|
|
- Added commands to enable or disable echoing of commands (#139)
|
|
|
|
## Bugs
|
|
- Do not retry uploads on 4xx Errors for Artifact Upload Service (#131)
|
|
- Actions cache no longer incorrectly caches the action if the tag was updated for self hosted runners (#148)
|
|
- Disabled echoing of commands on add-mask, debug, warning and error commands (#158)
|
|
- HashFile now is correctly configured to only support basic globbing and globstar (#149)
|
|
- HashFile now sets a default root and handles Windows paths correctly (#151)
|
|
|
|
## Misc
|
|
- N/A
|
|
|
|
## 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
|
|
```
|