Skip to content

Commit

Permalink
Iterating (#130)
Browse files Browse the repository at this point in the history
Signed-off-by: Laird Nelson <ljnelson@gmail.com>
  • Loading branch information
ljnelson authored Nov 14, 2023
1 parent 6823823 commit c6ccb58
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/mvn-release-prepare-perform.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,15 @@ jobs:
SONATYPE_OSSRH_USERNAME: '${{ secrets.SONATYPE_OSSRH_USERNAME }}'
shell: 'bash -e {0}'
run: >
echo "::gitconfig::Configuring git identity"
echo "::group::Configuring git identity"
git config --global user.email 'ci@microbean.org'
git config --global user.name 'microbean'
echo "::endgitconfig::"
echo "::endgroup::"
echo "::mvnprepare::Running mvn prepare"
echo "::group::Running mvn prepare"
mvn --batch-mode ${MVN_DEBUG} --errors ${MVN_TRANSFER_LOGGING} release:prepare
-DdryRun="${DRY_RUN}"
Expand All @@ -91,9 +91,9 @@ jobs:
echo "scm_tag=${scm_tag}" >> "${GITHUB_OUTPUT}"
echo "::endmvnprepare"
echo "::endgroup::"
echo "::mvnperform::Running mvn perform"
echo "::group::Running mvn perform"
set +e
Expand All @@ -113,7 +113,7 @@ jobs:
exit_codes=(${PIPESTATUS[@]})
echo "::endmvnperform"
echo "::endgroup"
set -e
Expand Down

0 comments on commit c6ccb58

Please sign in to comment.