Skip to content

Commit

Permalink
Iterating
Browse files Browse the repository at this point in the history
Signed-off-by: Laird Nelson <[email protected]>
  • Loading branch information
ljnelson committed Nov 10, 2023
1 parent ee61f80 commit 6a3c5ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/mvn-release-prepare-perform.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
run: |
git config --global user.email '[email protected]'
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'
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
run: |
git config --global user.email '[email protected]'
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'
Expand Down Expand Up @@ -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}"

0 comments on commit 6a3c5ee

Please sign in to comment.