diff --git a/.gitea/workflows/tests.yml b/.gitea/workflows/tests.yml index d8eef8f..79f7c5a 100644 --- a/.gitea/workflows/tests.yml +++ b/.gitea/workflows/tests.yml @@ -35,5 +35,5 @@ jobs: -e TESTENV=${{ gitea.workspace }} -e TESTENV2=TESTENV2 run: >- - /bin/sh -c - echo "test" + sh -c + echo "test diff --git a/action.yml b/action.yml index e735790..e277bda 100644 --- a/action.yml +++ b/action.yml @@ -31,7 +31,7 @@ inputs: shell: description: "Shell to use" required: false - default: /bin/sh + default: sh registry: description: "Container registry URL" diff --git a/entrypoint.sh b/entrypoint.sh index 97e292e..93f3ed4 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -47,7 +47,6 @@ for cmd in "${TMP_RUN[@]}"; do done exec docker run \ - --rm \ --volume "${INPUT_WORKDIR}:${INPUT_WORKDIR}" \ --workdir "${INPUT_WORKDIR}" \ --entrypoint="${INPUT_SHELL}" \