File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22env | egrep -v " ^(#|;| |PATH|SHLVL|HOSTNAME|DOCKER_*)" | awk ' $1 ~ /^\w+=/' | xargs -0 > docker-run-action.env
33set -x
4- env | egrep -v " (RUNNER_*|GITHUB_*)" | awk ' $1 ~ /^\w+=/' | xargs -0
4+ env | egrep " (RUNNER_*|GITHUB_*)" | awk ' $1 ~ /^\w+=/' | xargs -0
55ls /github
6- 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/home " :" /github/home " -v " /github/workflow" :" /github/workflow" -v " /github/file_commands" :" /github/file_commands" -v " $RUNNER_WORKSPACE " :" $RUNNER_WORKSPACE " --entrypoint=$INPUT_SHELL $INPUT_IMAGE -c " ${INPUT_RUN// $' \n ' / ;} "
6+ exec docker run --env-file docker-run-action.env --workdir " $RUNNER_WORKSPACE /$INPUT_WORKSPACE " -v " /var/run/docker.sock" :" /var/run/docker.sock" -v " $HOME " :" $HOME " -v " /github/workflow" :" /github/workflow" -v " /github/file_commands" :" /github/file_commands" -v " $RUNNER_WORKSPACE " :" $RUNNER_WORKSPACE " --entrypoint=$INPUT_SHELL $INPUT_IMAGE -c " ${INPUT_RUN// $' \n ' / ;} "
You can’t perform that action at this time.
0 commit comments