Skip to content

Commit

Permalink
Fix make 'release' command
Browse files Browse the repository at this point in the history
  • Loading branch information
serpro69 committed Mar 23, 2024
1 parent 9796bbc commit ebe2444
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 @@ -25,7 +25,7 @@ endif

.PHONY: test
test: ## Runs tests for the project
./gradlew clean test functionalTest
./gradlew test functionalTest

.PHONY: local
local: _check_java ## Publishes artifacts to local repos
Expand All @@ -35,7 +35,7 @@ local: _check_java ## Publishes artifacts to local repos
.PHONY: release
release: _check_java test ## Publishes the next release
# publish to sonatype and gradle-plugin-portal and close staging repo
./gradlew tag publishToSonatype closeSonatypeStagingRepository publishPlugins --info
./gradlew tag publishToSonatype closeSonatypeStagingRepository publishPlugins -Prelease --info
# push git tag
git push origin --tags

Expand Down

0 comments on commit ebe2444

Please sign in to comment.