Files
docker-gitea-runner-windows/install-runner.ps1
2023-09-28 17:50:43 +02:00

3 lines
433 B
PowerShell

# (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 '.'