We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7252a9a commit 7dee9d2Copy full SHA for 7dee9d2
action.yml
@@ -149,7 +149,9 @@ runs:
149
steps.pre-installed-python.outputs.python-path == ''
150
&& steps.new-python.outputs.python-path
151
|| steps.pre-installed-python.outputs.python-path
152
- }} '${{ github.action_path }}/create-docker-action.py'
+ }} '$GITHUB_ACTION_PATH/create-docker-action.py'
153
+ # Use proposed workaround for ${{ github.action_path }} not working inside containers
154
+ # https://github.com/actions/runner/issues/2185#issuecomment-1683545859
155
env:
156
REF: ${{ steps.set-repo-and-ref.outputs.ref }}
157
REPO: ${{ steps.set-repo-and-ref.outputs.repo }}
0 commit comments