Skip to content

Commit

Permalink
Fix windows directions in release notes (actions#307)
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Johnson authored Jan 29, 2020
1 parent a3c2479 commit 87a232c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions releaseNote.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@
- Treat warnings as errors during compile (#249)

## Windows x64
We recommend configuring the runner under "<DRIVE>:\actions-runner". This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows
```
// Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
// Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v<RUNNER_VERSION>/actions-runner-win-x64-<RUNNER_VERSION>.zip -OutFile actions-runner-win-x64-<RUNNER_VERSION>.zip
// Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$HOME\Downloads\actions-runner-win-x64-<RUNNER_VERSION>.zip", "$PWD")
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-<RUNNER_VERSION>.zip", "$PWD")
```

## OSX
Expand Down

0 comments on commit 87a232c

Please sign in to comment.