Releases: dennisameling/runner
Releases · dennisameling/runner
v2.275.1-win-arm64
Manual build of GitHub Actions runner on Windows ARM64
Windows arm64 (Pre-release)
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.
The following snipped needs to be run on powershell
:
# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/dennisameling/runner/releases/download/v2.275.1-win-arm64/actions-runner-win-arm64-2.275.1.zip -OutFile actions-runner-win-arm64-v2.275.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-v2.275.1.zip", "$PWD")
v2.273.6-win-arm64
Manual build of GitHub Actions runner on Windows ARM64
Windows arm64 (Pre-release)
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.
The following snipped needs to be run on powershell
:
# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/dennisameling/runner/releases/download/v2.273.6-win-arm64/actions-runner-win-arm64-2.273.5.zip -OutFile actions-runner-win-arm64-v2.273.6.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-v2.273.6.zip", "$PWD")