Skip to content

Commit

Permalink
Fix Makefile
Browse files Browse the repository at this point in the history
Configuration should happen before changelog is updated
  • Loading branch information
mpkorstanje committed Feb 14, 2021
1 parent 1378c3f commit dba0358
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,11 @@ update-changelog:
git push
.PHONY: .commit-and-push-changelog

.release-in-docker: default update-changelog .commit-and-push-changelog
.configure-cukebot-in-docker:
[ -f '/home/cukebot/configure' ] && /home/cukebot/configure
.PHONY: .configure-cukebot-in-docker

.release-in-docker: .configure-cukebot-in-docker default update-changelog .commit-and-push-changelog
mvn --batch-mode release:clean release:prepare -DautoVersionSubmodules=true -Darguments="-DskipTests=true -DskipITs=true -Darchetype.test.skip=true"
git checkout "v$(NEW_VERSION)"
mvn deploy -P-examples -P-compatibility -Psign-source-javadoc -DskipTests=true -DskipITs=true -Darchetype.test.skip=true
Expand Down

0 comments on commit dba0358

Please sign in to comment.