Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 1.73 KB

releaseNote.md

File metadata and controls

44 lines (33 loc) · 1.73 KB

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
macOS actions-runner-osx-x64-<RUNNER_VERSION>.tar.gz
Linux x64 actions-runner-linux-x64-<RUNNER_VERSION>.tar.gz

After Download:

Windows x64

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

~/$ mkdir myagent && cd myagent
~/myagent$ tar xzf ~/Downloads/actions-runner-osx-x64-<RUNNER_VERSION>.tar.gz

Linux x64

~/$ mkdir myagent && cd myagent
~/myagent$ tar xzf ~/Downloads/actions-runner-linux-x64-<RUNNER_VERSION>.tar.gz