From fa9373c3730333d85139a596e03377650b1834e2 Mon Sep 17 00:00:00 2001 From: Mark Patton Date: Thu, 14 Dec 2023 11:00:00 -0500 Subject: [PATCH] Add allowSnapshots to versions modification just in case --- .github/workflows/pass-java-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pass-java-release.yml b/.github/workflows/pass-java-release.yml index b3b1c794..952e52db 100644 --- a/.github/workflows/pass-java-release.yml +++ b/.github/workflows/pass-java-release.yml @@ -86,8 +86,8 @@ jobs: - name: Set the next dev version and commit the change run: | - (cd main && mvn versions:set -B -ntp -DnewVersion=$NEXT && git commit -am "Update version to $NEXT") - (cd combined && mvn versions:set -B -ntp -DnewVersion=$NEXT) + (cd main && mvn versions:set -B -ntp -DallowSnapshots=true -DnewVersion=$NEXT && git commit -am "Update version to $NEXT") + (cd combined && mvn versions:set -B -ntp -DallowSnapshots=true -DnewVersion=$NEXT) (cd combined/pass-core && git commit -am "Update version to $NEXT") (cd combined/pass-support && git commit -am "Update version to $NEXT")