Skip to content

Commit

Permalink
Fix subdirectory operations
Browse files Browse the repository at this point in the history
  • Loading branch information
markpatton committed Dec 4, 2023
1 parent 7567133 commit 2a6cb60
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/pass-java-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ jobs:
- name: Set the release version, commit the change, and tag it
run: |
cd main && mvn versions:set -B -ntp -DnewVersion=$RELEASE && git commit -am "Update version to $RELEASE" && git tag $RELEASE
cd pass-support && mvn versions:set -B -ntp -DnewVersion=$RELEASE && git commit -am "Update version to $RELEASE" && git tag $RELEASE
cd pass-core && mvn versions:set -B -ntp -DnewVersion=$RELEASE && git commit -am "Update version to $RELEASE" && git tag $RELEASE
cd combined && mvn versions:set -B -ntp -DnewVersion=$RELEASE
(cd main && mvn versions:set -B -ntp -DnewVersion=$RELEASE && git commit -am "Update version to $RELEASE" && git tag $RELEASE)
(cd pass-support && mvn versions:set -B -ntp -DnewVersion=$RELEASE && git commit -am "Update version to $RELEASE" && git tag $RELEASE)
(cd pass-core && mvn versions:set -B -ntp -DnewVersion=$RELEASE && git commit -am "Update version to $RELEASE" && git tag $RELEASE)
(cd combined && mvn versions:set -B -ntp -DnewVersion=$RELEASE)
- name: Setup Java & Maven
uses: actions/setup-java@v3
Expand All @@ -80,10 +80,10 @@ jobs:

- name: Set the next dev version, commit the change, and tag it
run: |
cd main && mvn versions:set -DnewVersion=$NEXT && git commit -am "Update version to $NEXT" && git tag $NEXT
cd pass-support && mvn versions:set -DnewVersion=$NEXT && git commit -am "Update version to $NEXT" && git tag $NEXT
cd pass-core && mvn versions:set -DnewVersion=$NEXT && git commit -am "Update version to $NEXT" && git tag $NEXT
cd combined && mvn versions:set -DnewVersion=$NEXT
(cd main && mvn versions:set -B -ntp -DnewVersion=$NEXT && git commit -am "Update version to $NEXT" && git tag $NEXT)
(cd pass-support && mvn versions:set -B -ntp -DnewVersion=$NEXT && git commit -am "Update version to $NEXT" && git tag $NEXT)
(cd pass-core && mvn versions:set -B -ntp -DnewVersion=$NEXT && git commit -am "Update version to $NEXT" && git tag $NEXT)
(cd combined && mvn versions:set -B -ntp -DnewVersion=$NEXT)
- name: Release dev Java modules
working-directory: combined
Expand Down

0 comments on commit 2a6cb60

Please sign in to comment.