Skip to content

Commit

Permalink
Merge pull request #3 from bigwheel/workaround-for-self-hosted-runner…
Browse files Browse the repository at this point in the history
…-bug

Workaround for Self Hosted Runner
  • Loading branch information
bigwheel committed Sep 17, 2024
2 parents ae91ff4 + ff6829e commit aad78b0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ runs:
steps:
- id: get-terraform-version
run: |
result=$(${{ github.action_path }}/src/main.sh ${{ inputs.path }})
# GITHUB_ACTION_PATH reason https://github.com/bigwheel/get-terraform-version-action/issues/2
result=$(${GITHUB_ACTION_PATH}/src/main.sh ${{ inputs.path }})
echo "terraform-version=$result" >> $GITHUB_OUTPUT
shell: bash

0 comments on commit aad78b0

Please sign in to comment.