diff --git a/.github/actions/maven-release/action.yml b/.github/actions/maven-release/action.yml index 7a629e47f..f7f1ffed4 100644 --- a/.github/actions/maven-release/action.yml +++ b/.github/actions/maven-release/action.yml @@ -131,12 +131,13 @@ runs: NEXUS_PASSWORD: "${{ inputs.nexus-password }}" NEXUS_URL: "${{ inputs.nexus-url }}" STAGING_REPOSITORY_ID: ${{ inputs.staging-repository }} + JAVA_VERSION: "${{ inputs.java-version }}" run: | echo "Deploying to repository $STAGING_REPOSITORY_ID" mvn clean deploy \ -DperformRelease \ -DskipTests \ - -Dmaven.compiler.release=11 \ + -Dmaven.compiler.release="${JAVA_VERSION}" \ -Dmaven.artifact.threads=30 \ --batch-mode \ -DaltReleaseDeploymentRepository=nexus-releases-staging-fixed::default::"${NEXUS_URL}"/service/local/staging/deployByRepositoryId/"$STAGING_REPOSITORY_ID " \ diff --git a/version.txt b/version.txt index 508879b8a..b8928fe3b 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -v3.3.2 +v3.3.3