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 1e14c15 commit 9ecc01bCopy full SHA for 9ecc01b
action.yaml
@@ -22,7 +22,16 @@ runs:
22
docker tag ${{ inputs.image }} containerized_runner
23
echo "::endgroup::"
24
shell: bash
25
+ - name: Symlink current action repo
26
+ env:
27
+ action_path: ${{ github.action_path }}
28
+ run: ln -fs ${{ env.action_path }}/.. .github/.action_repo.run-containerized-script
29
+ shell: bash
30
- name: Run on container
- uses: ./run
31
+ uses: ./.github/.action_repo.run-containerized-script/run
32
with:
33
args: ${{ inputs.args }}
34
+ - name: Unlink the action repository
35
+ if: always()
36
+ run: rm -f .github/.action_repo.run-containerized-script
37
0 commit comments