From 3b6c9f8a8cd540072eaee917ab8cffafdb32981a Mon Sep 17 00:00:00 2001 From: Corneil du Plessis Date: Thu, 17 Nov 2022 19:39:22 +0200 Subject: [PATCH] [GitHub Actions] Ensure VERBOSE uses github.debug as well. --- .github/workflows/common.yml | 2 +- build-app.sh | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/common.yml b/.github/workflows/common.yml index 723d2c23..b6526791 100644 --- a/.github/workflows/common.yml +++ b/.github/workflows/common.yml @@ -26,7 +26,7 @@ on: GH_ARC_PAT: env: - VERBOSE: ${{ inputs.verbose && 'true' || '' }} + VERBOSE: ${{ (github.debug || inputs.verbose) && 'true' || '' }} BRANCH: ${{ inputs.branch }} jobs: diff --git a/build-app.sh b/build-app.sh index e0cf701c..d6128570 100755 --- a/build-app.sh +++ b/build-app.sh @@ -38,7 +38,6 @@ pushd "$PROJECT_FOLDER" > /dev/null MAVEN_OPT="$MAVEN_OPT -B -U" fi if [ "$VERSION" == "" ]; then - VERSION=$($SCDIR/mvn-get-version.sh) fi echo "Project Version:$VERSION"