Skip to content

Commit

Permalink
ci: fix incorrect version variable references
Browse files Browse the repository at this point in the history
RELEASE_VERSION should be used instead of VERSION

Signed-off-by: Julien Ponge <[email protected]>
  • Loading branch information
jponge committed Sep 20, 2023
1 parent 1b7c809 commit 6e63427
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .build/justfile-for-release
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ pre-release: decrypt-secrets init-gpg init-git
@echo "Bump project version to ${RELEASE_VERSION}"
./mvnw --settings .build/maven-ci-settings.xml --batch-mode --no-transfer-progress versions:set -DnewVersion=${RELEASE_VERSION} -DgenerateBackupPoms=false
./mvnw --settings .build/maven-ci-settings.xml --batch-mode --no-transfer-progress versions:set -DnewVersion=${RELEASE_VERSION} -DgenerateBackupPoms=false -pl bom
jbang .build/UpdateDocsAttributesFiles.java --mutiny-version=${VERSION}
.build/update-workshop-target-version.sh "${VERSION}"
jbang .build/UpdateDocsAttributesFiles.java --mutiny-version=${RELEASE_VERSION}
.build/update-workshop-target-version.sh "${RELEASE_VERSION}"
@echo "Check that the project builds (no tests)"
./mvnw --settings maven-settings.xml --batch-mode --no-transfer-progress clean install -Prelease -DskipTests
@echo "Check that the website builds"
Expand Down

0 comments on commit 6e63427

Please sign in to comment.