diff --git a/.github/workflows/get-version.yml b/.github/workflows/get-version.yml index ae2b60b4b..d97fe1caa 100644 --- a/.github/workflows/get-version.yml +++ b/.github/workflows/get-version.yml @@ -50,7 +50,7 @@ jobs: if [[ $GITHUB_REF =~ refs/tags/[0-9]+\.[0-9]+\.[0-9]+.* ]]; then SEM_VER_STR=${GITHUB_REF##*/} elif [[ "${{ inputs.version }}" =~ [0-9]+\.[0-9]+\.[0-9]+.* ]]; then - SEM_VER_STR="${{ github.event.inputs.version }}" + SEM_VER_STR="${{ inputs.version }}" else SEM_VER_STR=`mvn help:evaluate -Dexpression=project.version -q -DforceStdout` fi