2019-10-10 00:52:42 -04:00
|
|
|
## Features
|
2019-10-24 16:44:53 -04:00
|
|
|
- N/A
|
2019-10-10 00:52:42 -04:00
|
|
|
|
|
|
|
|
## Bugs
|
2019-10-28 11:12:31 -04:00
|
|
|
- Reverted removal of additional fields error and warning fields (#147)
|
2019-10-28 13:44:09 -04:00
|
|
|
- Actions cache would incorrectly cache the action if the tag was updated (#148)
|
2019-10-10 00:52:42 -04:00
|
|
|
|
|
|
|
|
## Misc
|
2019-10-24 16:44:53 -04:00
|
|
|
- Updated to .NET Core 3.0 (#127)
|
2019-10-10 00:52:42 -04:00
|
|
|
|
|
|
|
|
## 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
|
|
|
|
|
```
|