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 14, 2023
1 parent 8079bca commit 911940f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
14 changes: 13 additions & 1 deletion .github/workflows/mvn-release-prepare-perform.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,21 +70,31 @@ jobs:
SONATYPE_OSSRH_USERNAME: '${{ secrets.SONATYPE_OSSRH_USERNAME }}'
shell: 'bash -e {0}'
run: >
echo "::gitconfig::Configuring git identity"
git config --global user.email '[email protected]'
git config --global user.name 'microbean'
echo "::endgitconfig::"
echo "::mvnprepare::Running mvn prepare"
mvn --batch-mode ${MVN_DEBUG} --errors ${MVN_TRANSFER_LOGGING} release:prepare
-DdryRun="${DRY_RUN}"
-Darguments="${MVN_TRANSFER_LOGGING}"
-Dscm.url="${SCM_GIT_HTTPS_URL}"
scm_tag="$(grep '^scm.tag=' release.properties | cut -f 2 -d =)"
echo "Prepared ${scm_tag}" >> "${GITHUB_STEP_SUMMARY}"
echo "scm_tag=${scm_tag}" >> "${GITHUB_OUTPUT}"
echo "::endmvnprepare"
echo "::mvnperform::Running mvn perform"
set +e
{
Expand All @@ -103,6 +113,8 @@ jobs:
exit_codes=(${PIPESTATUS[@]})
echo "::endmvnperform"
set -e
if [ "${exit_codes[2]}" -ne 0 ] ; then
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ dependency:
<groupId>org.microbean</groupId>
<artifactId>microbean-function</artifactId>
<!-- Always check https://search.maven.org/artifact/org.microbean/microbean-function for up-to-date available versions. -->
<version>0.0.50</version>
<version>0.0.67</version>
</dependency>
```

Expand Down

0 comments on commit 911940f

Please sign in to comment.