Skip to content

Commit

Permalink
Fix 'release' cmd in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
serpro69 committed Mar 10, 2024
1 parent ae2903f commit 3bbffba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ release: check_java ## publishes the next release with a specified VERSION
./gradlew clean test integrationTest -Pversion=$(VERSION)
# build and test native image
./gradlew nativeCompile -Pversion=$(VERSION) --info
./cli-bot/build/graal/faker-bot_$(VERSION) list --verbose >/dev/null || false
./cli-bot/build/graal/faker-bot_$(VERSION) lookup a --verbose >/dev/null || false
./cli-bot/build/native/nativeCompile/faker-bot_$(VERSION) list --verbose >/dev/null || false
./cli-bot/build/native/nativeCompile/faker-bot_$(VERSION) lookup a --verbose >/dev/null || false
# publish to sonatype and close staging repo
./gradlew publishToSonatype closeSonatypeStagingRepository -Pversion=$(VERSION) --info
# create and push git tag
Expand Down

0 comments on commit 3bbffba

Please sign in to comment.