[GitHub Actions] Ensure VERBOSE uses github.debug as well.

This commit is contained in:
Corneil du Plessis
2022-11-17 19:39:22 +02:00
parent f55fa3d6ae
commit 3b6c9f8a8c
2 changed files with 1 additions and 2 deletions

View File

@@ -26,7 +26,7 @@ on:
GH_ARC_PAT:
env:
VERBOSE: ${{ inputs.verbose && 'true' || '' }}
VERBOSE: ${{ (github.debug || inputs.verbose) && 'true' || '' }}
BRANCH: ${{ inputs.branch }}
jobs:

View File

@@ -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"