From 6af2e1bdb7ab2a117fd41e8d278eef0c66c90452 Mon Sep 17 00:00:00 2001 From: Avgustin Marinov Date: Wed, 25 Jun 2025 12:32:47 +0300 Subject: [PATCH] Skip tests when deploy --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index de0dfc647..212dba295 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 }} \ No newline at end of file + REVISION: ${{ github.event.inputs.revision }}