Skip to content

Commit 0d4c4cd

Browse files
committed
Fix Makefile
Configuration should happen before changelog is updated
1 parent ddcbe08 commit 0d4c4cd

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,11 @@ update-changelog:
4949
git push
5050
.PHONY: .commit-and-push-changelog
5151

52-
.release-in-docker: default update-changelog .commit-and-push-changelog
53-
[ -f '/home/cukebot/import-gpg-key.sh' ] && /home/cukebot/import-gpg-key.sh
52+
.configure-cukebot-in-docker:
53+
[ -f '/home/cukebot/configure' ] && /home/cukebot/configure
54+
.PHONY: .configure-cukebot-in-docker
55+
56+
.release-in-docker: .configure-cukebot-in-docker default update-changelog .commit-and-push-changelog
5457
mvn --batch-mode release:clean release:prepare -DautoVersionSubmodules=true -Darguments="-DskipTests=true -DskipITs=true -Darchetype.test.skip=true"
5558
git checkout "v$(NEW_VERSION)"
5659
mvn deploy -P-examples -P-compatibility -Psign-source-javadoc -DskipTests=true -DskipITs=true -Darchetype.test.skip=true

0 commit comments

Comments
 (0)