We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Users are installing older versions of the runner since the installation script is out of date. We should instead link to https://github.com/actions/runner/releases which has the commands to run
The text was updated successfully, but these errors were encountered:
#!/usr/bin/env bash set -exo pipefail RUNNER_HOME="${RUNNER_HOME:-"$HOME/actions-runner"}" mkdir -p "${RUNNER_HOME}" cd "${RUNNER_HOME}" RUNNER_ARCH=${RUNNER_ARCH:-"$(uname -m)"} if [ "$RUNNER_ARCH" = "x86_64" ] || [ "$RUNNER_ARCH" = "x64" ]; then RUNNER_ARCH="x64" fi CURL_CMD="$(curl -s -L https://github.com/actions/runner/releases/latest | grep "curl.*actions-runner-osx-${RUNNER_ARCH}.*.tar.gz" | head -1)" FULL_FILE_NAME="$(echo "$CURL_CMD" | cut -d/ -f9)" $CURL_CMD tar -xzf "$FULL_FILE_NAME" 1>/dev/null rm -f "$FULL_FILE_NAME" echo "runner successfully installed"
This is a good way to get the latest, for now.
Sorry, something went wrong.
No branches or pull requests
Users are installing older versions of the runner since the installation script is out of date. We should instead link to https://github.com/actions/runner/releases which has the commands to run
The text was updated successfully, but these errors were encountered: