File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -53,17 +53,14 @@ jobs:
53
53
shell : pwsh
54
54
55
55
steps :
56
- - name : Log in to GHCR
57
- run : echo "${{ secrets.CR_PAT }}" | docker login ghcr.io -u $env:GITHUB_ACTOR --password-stdin
58
-
59
56
- name : Pull Image
60
57
run : docker pull "${{ needs.build-and-push.outputs.image_tagged }}"
61
58
62
59
- name : Run Container
63
- run : docker run --entrypoint ${{ env.entry }} --isolation process -di --name orphan "${{ needs.build-and-push.outputs.image_tagged }}" ${{ env.cmd }}
60
+ run : docker run --entrypoint cmd --isolation process -di --name orphan "${{ needs.build-and-push.outputs.image_tagged }}" ${{ env.cmd }}
64
61
65
62
- name : Inspect Container
66
63
run : docker inspect orphan
67
64
68
65
- name : Container – Inspect Godbolt Dist
69
- run : docker exec orphan ${{ env.entry }} ${{ env. cmd }} -Command node --import=tsx --no-warnings=ExperimentalWarning ./app.js --version --dist
66
+ run : docker exec orphan cmd /c node --import=tsx --no-warnings=ExperimentalWarning ./app.js --version --dist
You can’t perform that action at this time.
0 commit comments