Skip to content

Commit

Permalink
chore(release): Include ui frontend when doing a release
Browse files Browse the repository at this point in the history
  • Loading branch information
christophd committed Aug 14, 2024
1 parent de9e1da commit 0311ef2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/commands/release
Original file line number Diff line number Diff line change
Expand Up @@ -209,13 +209,13 @@ build_and_stage_artifacts() {
cd $working_dir
if [ $(hasflag --local-release) ]; then
echo "==== Release to local"
./mvnw ${maven_opts} install
./mvnw ${maven_opts} install -DskipFrontend=false
elif [ $(hasflag --snapshot-release) ]; then
echo "==== Release snapshot to local"
./mvnw ${maven_opts} install
./mvnw ${maven_opts} install -DskipFrontend=false
else
echo "==== Release to Maven central and stage artifacts to Sonatype"
./mvnw ${maven_opts} install deploy -Dsurefire.failIfNoSpecifiedTests=false -Dfailsafe.failIfNoSpecifiedTests=false -Dtest -Dit.test -Prelease-central -DstagingDescription="Staging Citrus for v$release_version"
./mvnw ${maven_opts} install deploy -DskipFrontend=false -Dsurefire.failIfNoSpecifiedTests=false -Dfailsafe.failIfNoSpecifiedTests=false -Dtest -Dit.test -Prelease-central -DstagingDescription="Staging Citrus for v$release_version"
fi
}

Expand Down

0 comments on commit 0311ef2

Please sign in to comment.