Skip tests when deploy

This commit is contained in:
Avgustin Marinov
2025-06-25 12:32:47 +03:00
committed by GitHub
parent fb65d4ca74
commit 6af2e1bdb7

View File

@@ -97,7 +97,7 @@ jobs:
REVISION: ${{ github.event.inputs.revision }}
- name: "Deploy ${{ github.event.inputs.revision }}"
run: mvn deploy -Ppublish -Drevision=${REVISION} --batch-mode
run: mvn deploy -DskipTest -Ppublish -Drevision=${REVISION} --batch-mode
env:
REVISION: ${{ github.event.inputs.revision }}
MAVEN_USERNAME: ${{ secrets.CENTRAL_SONATYPE_TOKEN_USERNAME }}
@@ -111,4 +111,4 @@ jobs:
git tag -a ${REVISION} -m "Release version ${REVISION}" && git push origin ${REVISION}
fi
env:
REVISION: ${{ github.event.inputs.revision }}
REVISION: ${{ github.event.inputs.revision }}