File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -131,17 +131,20 @@ runs:
131
131
PR_REPO : ${{ github.event.pull_request.head.repo.full_name }}
132
132
PR_REPO_ID : ${{ github.event.pull_request.base.repo.id }}
133
133
- name : Create Docker container action
134
+ id : intermediate-action
134
135
run : |
135
136
# Create Docker container action
136
- python create-docker-action.py
137
+ python ${{ github.action_path }}/create-docker-action.py
138
+ echo "path=$(realpath -s --relative-to="$(pwd)" '${{
139
+ github.action_path
140
+ }}')" >> "${GITHUB_OUTPUT}"
137
141
env :
138
142
REF : ${{ steps.set-repo-and-ref.outputs.ref }}
139
143
REPO : ${{ steps.set-repo-and-ref.outputs.repo }}
140
144
REPO_ID : ${{ steps.set-repo-and-ref.outputs.repo-id }}
141
145
shell : bash
142
- working-directory : ${{ github.action_path }}
143
146
- name : Run Docker container
144
- uses : ${{ github.action_path }}/.github/actions/run-docker-container
147
+ uses : ${{ steps.intermediate-action.outputs.path }}/.github/actions/run-docker-container
145
148
with :
146
149
user : ${{ inputs.user }}
147
150
password : ${{ inputs.password }}
You can’t perform that action at this time.
0 commit comments