We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c29217 commit 16f61a6Copy full SHA for 16f61a6
.github/workflows/release.yml
@@ -31,6 +31,12 @@ jobs:
31
uses: ./.github/workflows/validate-tag
32
with:
33
tag: v${{ env.RELEASE_VERSION }}
34
+ - name: Validate tag match current version
35
+ run: |
36
+ if [ "$(mvn -q help:evaluate -Dexpression=project.version -DforceStdout)" != "${{ env.RELEASE_VERSION }}" ]; then
37
+ echo "Tag should match pom.xml project.version"
38
+ exit 1
39
+ fi
40
41
release:
42
name: Release
.mvn/maven.config
@@ -1,4 +1,3 @@
1
--V
2
-B
3
-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
4
-Dhttps.protocols=TLSv1.2
0 commit comments