First iteration of Windows Runner

This commit is contained in:
janssen
2023-09-28 17:50:43 +02:00
commit a6741ac1d0
6 changed files with 202 additions and 0 deletions

3
install-runner.ps1 Normal file
View File

@@ -0,0 +1,3 @@
# (New-Object System.Net.WebClient).DownloadFile("https://github.com/actions/runner/releases/download/v$env:RUNNER_VERSION/actions-runner-win-x64-$env:RUNNER_VERSION.zip","actions-runner.zip")
Invoke-WebRequest -Uri "https://github.com/actions/runner/releases/download/v$env:RUNNER_VERSION/actions-runner-win-x64-$env:RUNNER_VERSION.zip" -OutFile "actions-runner.zip"
Expand-Archive -Path ".\\actions-runner.zip" -DestinationPath '.'