macstadium / orka-integrations

CI/CD Integrations for Orka by MacStadium
https://www.macstadium.com/orka
MIT License
43 stars 11 forks source link

ORKA-865 Fix OSX actions runner download URL #22

Closed Fatme closed 3 years ago

Fatme commented 3 years ago

Jira issue: https://macstadium.atlassian.net/jira/software/projects/ORKA/boards/28?selectedIssue=ORKA-865

Currently, we're using the githubassets.azureedge.net which is not available anymore. Change it with the github.com when downloading the OSX runner.

Previously, version=2.163.1 curl -o actions-runner.tar.gz https://githubassets.azureedge.net/runners/$version/actions-runner-osx-x64-$version.tar.gz returns curl: (6) Could not resolve host: githubassets.azureedge.net

Now, version=2.163.1 curl -o actions-runner.tar.gz https://github.com/actions/runner/releases/download/$version/actions-runner-osx-x64-$version.tar.gz works as expected and downloads successfully the actions-runner.tar.gz