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 4f7375e commit b0960c2Copy full SHA for b0960c2
.github/workflows/tests.yml
@@ -18,7 +18,6 @@ jobs:
18
image: docker:20.10.3
19
shell: sh
20
run: |
21
- ls /github
22
echo "docker-version=$DOCKER_VERSION" >> $GITHUB_OUTPUT
23
- name: Test the output
24
uses: actions/github-script@v6
entrypoint.sh
@@ -1,4 +1,5 @@
1
#!/usr/bin/env bash
2
env | egrep -v "^(#|;| |PATH|SHLVL|HOSTNAME|DOCKER_*)" | awk '$1 ~ /^\w+=/' | xargs -0 > docker-run-action.env
3
set -x
4
+ls /github
5
exec docker run --env-file docker-run-action.env --workdir "$RUNNER_WORKSPACE/$INPUT_WORKSPACE" -v "/var/run/docker.sock":"/var/run/docker.sock" -v "/github/file_commands":"/github/file_commands" -v "$RUNNER_WORKSPACE":"$RUNNER_WORKSPACE" --entrypoint=$INPUT_SHELL $INPUT_IMAGE -c "${INPUT_RUN//$'\n'/;}"
0 commit comments