Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisameling committed Dec 20, 2022
1 parent 63f7f40 commit 5e04638
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/create-azure-vm-runners.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,15 +82,16 @@ jobs:
echo "::add-mask::$ACTIONS_RUNNER_TOKEN"
echo ACTIONS_RUNNER_TOKEN=$ACTIONS_RUNNER_TOKEN >> $GITHUB_ENV
case "${{ inputs.runner-scope }}" in
case "${{ inputs.runner_scope }}" in
"org-level")
echo ACTIONS_RUNNER_REGISTRATION_URL="https://github.com/${{ env.ACTIONS_RUNNER_ORG }}" >> $GITHUB_ENV
;;
"repo-level")
echo ACTIONS_RUNNER_REGISTRATION_URL="https://github.com/${{ env.ACTIONS_RUNNER_ORG }}/${{ env.ACTIONS_RUNNER_REPO }}" >> $GITHUB_ENV
;;
*)
die "Unsupported runner scope: ${{ inputs.runner-scope }}"
echo "Unsupported runner scope: ${{ inputs.runner_scope }}"
exit 1
;;
esac
Expand Down

0 comments on commit 5e04638

Please sign in to comment.