fix debug
All checks were successful
run tests / run-container (push) Successful in 7s

This commit is contained in:
Ivan Schaller 2023-08-16 12:25:43 +02:00
parent 0728da8404
commit 57f5df95d6
Signed by: olofvndrhr
GPG key ID: 2A6BE07D99C8C205

View file

@ -2,7 +2,7 @@
set -euo pipefail
if [ -n "${INPUT_DEBUG}" ]; then
if [ "${INPUT_DEBUG,,}" == "true" ]; then
set -x
fi
@ -12,7 +12,7 @@ RUN_COMMAND=()
env | grep -v -E "^(#|;| |PATH|SHLVL|HOSTNAME|DOCKER_*)" | awk '$1 ~ /^\w+=/' | xargs -0 > "/docker-run-action.env"
if [ -n "${INPUT_DEBUG}" ]; then
if [ "${INPUT_DEBUG,,}" == "true" ]; then
cat "/docker-run-action.env"
fi