From f38ebbe998b23bf43dcb23507c0c2c345e1deec4 Mon Sep 17 00:00:00 2001 From: Matthijs van der Burgh Date: Wed, 8 May 2024 11:55:29 +0200 Subject: [PATCH 1/2] Small change regarding debug --- ci/install-package.sh | 2 +- ci/main/action.yml | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) 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") From 53b1e8bfa1a42b3108a9f2d7c9b506f4ba6adf34 Mon Sep 17 00:00:00 2001 From: Matthijs van der Burgh Date: Wed, 8 May 2024 11:55:47 +0200 Subject: [PATCH 2/2] Bump VERSION to 1.25.7 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 198ec23cc..f1968aa88 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.25.6 +1.25.7