From 6a3c5ee59fa3e2a57cd7d97c221f30d1b5a1fbbc Mon Sep 17 00:00:00 2001 From: Laird Nelson Date: Fri, 10 Nov 2023 11:39:51 -0800 Subject: [PATCH] Iterating Signed-off-by: Laird Nelson --- .github/workflows/mvn-release-prepare-perform.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/mvn-release-prepare-perform.yaml b/.github/workflows/mvn-release-prepare-perform.yaml index da113bf..50d15c9 100644 --- a/.github/workflows/mvn-release-prepare-perform.yaml +++ b/.github/workflows/mvn-release-prepare-perform.yaml @@ -54,7 +54,7 @@ jobs: run: | git config --global user.email 'ci@microbean.org' git config --global user.name 'microbean' - mvn ${MVN_DEBUG} --batch-mode release:prepare -DdryRun="${DRY_RUN}" -Dscm.url="${SCM_GIT_HTTPS_URL}" + mvn ${MVN_DEBUG} -e --batch-mode release:prepare -DdryRun="${DRY_RUN}" -Dscm.url="${SCM_GIT_HTTPS_URL}" - id: 'upload-release-properties' name: 'Step: Upload release.properties' uses: 'actions/upload-artifact@v3' @@ -115,7 +115,7 @@ jobs: run: | git config --global user.email 'ci@microbean.org' git config --global user.name 'microbean' - mvn ${MVN_DEBUG} --batch-mode release:perform -DdryRun="${DRY_RUN}" -Dgoals="deploy,post-site" -Darguments="-DaltDeploymentRepository=sonatype-oss-repository-hosting::https://oss.sonatype.org/service/local/staging/deploy/maven2/ -DskipStaging=true" + mvn ${MVN_DEBUG} -e --batch-mode release:perform -DdryRun="${DRY_RUN}" -Dgoals="deploy,post-site" -Darguments="${MVN_DEBUG} -e -DaltDeploymentRepository=sonatype-oss-repository-hosting::default::https://oss.sonatype.org/service/local/staging/deploy/maven2/ -DskipStaging=true" - id: 'upload-site' if: 'inputs.dryRun != true' name: 'Step: Upload Site Directory' @@ -175,4 +175,4 @@ jobs: PUSH_TOKEN : '${{ secrets.PUSH_TOKEN }}' # critical; see ${GIT_ASKPASS} file SCM_GIT_HTTPS_URL: 'scm:git:${{ github.server_url }}/${{ github.repository }}.git' run: | - mvn ${MVN_DEBUG} --batch-mode scm-publish:publish-scm -Dscmpublish.pubScmUrl="${SCM_GIT_HTTPS_URL}" + mvn ${MVN_DEBUG} -e --batch-mode scm-publish:publish-scm -Dscmpublish.pubScmUrl="${SCM_GIT_HTTPS_URL}"