Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/main/scripts/cd/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,11 @@ check_tag_for_rc() {
check_next_version
check_tag_for_rc

mvn -P release -Darguments=-DskipTests release:prepare release:perform $MVN_RELEASE_VERSION $MVN_NEXT_VERSION -DautoVersionSubmodules=true -DscmCommentPrefix="$TRAVIS_COMMIT_MESSAGE [skip ci] " -B -V -s travis-settings.xml
mvn -P release -Darguments=-DskipTests \
release:prepare release:perform $MVN_RELEASE_VERSION $MVN_NEXT_VERSION \
-DautoVersionSubmodules=true \
-DscmCommentPrefix="$TRAVIS_COMMIT_MESSAGE [skip ci] " \
-B -V -s travis-settings.xml || exit 126

mvn clean

Expand Down