You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
git checkout -b "rel-$VERSION"&&echo"✅ Success"||echo"🛑 Branch already exists did you bump the version after you completed the last release?"
324
324
325
-
mvn -q versions:set -DnewVersion="$VERSION"&&echo"✅ Success"||echo"🛑 Unable to set the new versions"
325
+
mvnd -q versions:set -DnewVersion="$VERSION"&&echo"✅ Success"||echo"🛑 Unable to set the new versions"
326
326
327
327
git commit -am "chore: release $VERSION (branch-local version bump)"&&echo"✅ Success"||echo"🛑 Nothing to commit; did you set the same version as already in the POM?"
mvn -P release -Dgpg.passphrase="$GPG_PASSPHRASE"$KEYARG clean deploy &&echo"✅ Success"||echo"🛑 Unable to deploy to Maven Central; check the output for details"
343
+
mvnd -P release -Dgpg.passphrase="$GPG_PASSPHRASE"$KEYARG clean deploy &&echo"✅ Success"||echo"🛑 Unable to deploy to Maven Central; check the output for details"
344
344
345
345
git push -u origin "rel-$VERSION"&&echo"✅ Success"||echo"🛑 Unable to push branch; do you have permission to push to this repo?"
0 commit comments