Skip to content

Commit

Permalink
Iterating (#96)
Browse files Browse the repository at this point in the history
Signed-off-by: Laird Nelson <[email protected]>
  • Loading branch information
ljnelson authored Nov 10, 2023
1 parent 6d479c9 commit 95f6105
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/mvn-release-prepare-perform.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,16 @@ jobs:
git config --global user.email '[email protected]'
git config --global user.name 'microbean'
mvn ${MVN_DEBUG} -e --batch-mode release:perform -DdryRun="${DRY_RUN}" -Dgoals="deploy,post-site" -Darguments="-e -DautoReleaseAfterClose=${AUTO_RELEASE_AFTER_CLOSE} -DskipTests=true"
find target -name "*.properties"
# mvn ${MVN_DEBUG} -e --batch-mode nexus-staging:release
- id: 'upload-nexus-staging'
if: 'inputs.dryRun != true'
name: 'Step: Upload Nexus Staging Directory'
uses: 'actions/upload-artifact@v3'
with:
if-no-files-found: 'error' # for now
name: 'nexus-staging'
path: |
target/checkout/target/nexus-staging
- id: 'upload-site'
if: 'inputs.dryRun != true'
name: 'Step: Upload Site Directory'
Expand Down

0 comments on commit 95f6105

Please sign in to comment.