diff --git a/VERSION b/VERSION index 198ec23cc..f1968aa88 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.25.6 +1.25.7 diff --git a/ci/install-package.sh b/ci/install-package.sh index 7d1e84fcc..25e0e7073 100755 --- a/ci/install-package.sh +++ b/ci/install-package.sh @@ -77,7 +77,7 @@ echo -e "\e[35;1mSHARED_DIR = ${SHARED_DIR}\e[0m" # Set default value for REF_NAME [ -z "$REF_NAME" ] && REF_NAME="pull" echo -e "\e[35;1mREF_NAME = ${REF_NAME}\e[0m" -echo -e "\e[35;1mDEBUG = ${DEBUG}\e[0m" +echo -e "\e[35;1mDEBUG = ${DEBUG}\e[0m" ADDITIONAL_ARGS_LOCAL_INSTALL=() ADDITIONAL_ARGS_LOCAL_BUILD=() diff --git a/ci/main/action.yml b/ci/main/action.yml index 8e09bcec3..2041f9207 100644 --- a/ci/main/action.yml +++ b/ci/main/action.yml @@ -79,7 +79,8 @@ runs: done fi DEBUG_ARGS=() - DEBUG=${RUNNER_DEBUG:-false} + DEBUG=${RUNNER_DEBUG:+true} + DEBUG=${DEBUG:-false} if [[ ${DEBUG} == "true" ]] then DEBUG_ARGS+=("--debug") @@ -100,7 +101,8 @@ runs: run: | echo "::group::build-package.sh" DEBUG_ARGS=() - DEBUG=${RUNNER_DEBUG:-false} + DEBUG=${RUNNER_DEBUG:+true} + DEBUG=${DEBUG:-false} if [[ ${DEBUG} == "true" ]] then DEBUG_ARGS+=("--debug") @@ -116,7 +118,8 @@ runs: run: | echo "::group::test-package.sh" DEBUG_ARGS=() - DEBUG=${RUNNER_DEBUG:-false} + DEBUG=${RUNNER_DEBUG:+true} + DEBUG=${DEBUG:-false} if [[ ${DEBUG} == "true" ]] then DEBUG_ARGS+=("--debug")