Skip to content

Commit dc6e919

Browse files
authored
Merge pull request #262 from cucumber/fixrelease
chore: 🤖 Fix release process for latest cucumber-build image
2 parents 5cef739 + b646a22 commit dc6e919

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

Makefile

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ update-changelog:
3434
.PHONY: .commit-and-push-changelog
3535

3636
.configure-cukebot-in-docker:
37-
[ -f '/home/cukebot/configure' ] && /home/cukebot/configure
37+
[ -f '/root/configure' ] && /root/configure
3838
.PHONY: .configure-cukebot-in-docker
3939

4040
.release-in-docker: .configure-cukebot-in-docker default update-changelog update-installdoc .commit-and-push-changelog-and-docs
@@ -49,15 +49,14 @@ release:
4949
docker pull cucumber/cucumber-build:latest
5050
docker run \
5151
--volume "${shell pwd}":/app \
52-
--volume "${shell pwd}/../secrets/configure":/home/cukebot/configure \
53-
--volume "${shell pwd}/../secrets/codesigning.key":/home/cukebot/codesigning.key \
54-
--volume "${shell pwd}/../secrets/gpg-with-passphrase":/home/cukebot/gpg-with-passphrase \
55-
--volume "${shell pwd}/../secrets/.ssh":/home/cukebot/.ssh \
56-
--volume "${HOME}/.ivy2":/home/cukebot/.ivy2 \
57-
--volume "${HOME}/.cache/coursier":/home/cukebot/.cache/coursier \
58-
--volume "${HOME}/.cache/sbt":/home/cukebot/.cache/sbt \
52+
--volume "${shell pwd}/../secrets/configure":/root/configure \
53+
--volume "${shell pwd}/../secrets/codesigning.key":/root/codesigning.key \
54+
--volume "${shell pwd}/../secrets/gpg-with-passphrase":/root/gpg-with-passphrase \
55+
--volume "${shell pwd}/../secrets/.ssh":/root/.ssh \
56+
--volume "${HOME}/.ivy2":/root/.ivy2 \
57+
--volume "${HOME}/.cache/coursier":/root/.cache/coursier \
58+
--volume "${HOME}/.cache/sbt":/root/.cache/sbt \
5959
--env-file "${shell pwd}/../secrets/secrets.list" \
60-
--user 1000 \
6160
--rm \
6261
-it cucumber/cucumber-build:latest \
6362
make .release-in-docker

0 commit comments

Comments
 (0)