From cc7b5e0639dbc5c0c9f7bb9a68adebb6537eeb01 Mon Sep 17 00:00:00 2001 From: kaklakariada Date: Mon, 18 May 2026 10:44:14 +0200 Subject: [PATCH 1/2] Fix publishing profile name --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a265298..ddc6610 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -59,7 +59,7 @@ jobs: - name: Publish to Maven Central Repository if: ${{ !inputs.skip-deploy-maven-central }} run: | - mvn --batch-mode deploy -PcentralPublishing -DossindexSkip=true \ + mvn --batch-mode deploy -Pcentral-publishing -DossindexSkip=true \ -DcentralPublishingSkipPublishing=false \ -DcentralPublishingAutoPublish=${AUTO_PUBLISH} \ -DcentralPublishingDeploymentName="Deploy OFT Maven Plugin via release.yml" From 16714d90c09da0889f5e1e6dd54b77c16a5941f4 Mon Sep 17 00:00:00 2001 From: kaklakariada Date: Mon, 18 May 2026 10:45:33 +0200 Subject: [PATCH 2/2] Skip tests for release build (already ran before) --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ddc6610..9af0bfa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -59,7 +59,7 @@ jobs: - name: Publish to Maven Central Repository if: ${{ !inputs.skip-deploy-maven-central }} run: | - mvn --batch-mode deploy -Pcentral-publishing -DossindexSkip=true \ + mvn --batch-mode deploy -Pcentral-publishing -DossindexSkip=true -DskipTests \ -DcentralPublishingSkipPublishing=false \ -DcentralPublishingAutoPublish=${AUTO_PUBLISH} \ -DcentralPublishingDeploymentName="Deploy OFT Maven Plugin via release.yml"