You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@pekko.apache.org by "seveneves (via GitHub)" <gi...@apache.org> on 2023/02/15 13:41:11 UTC

[GitHub] [incubator-pekko] seveneves commented on a diff in pull request #188: [DRAFT] Some rudimentary version of how releasing could work

seveneves commented on code in PR #188:
URL: https://github.com/apache/incubator-pekko/pull/188#discussion_r1107139418


##########
scripts/release/README.md:
##########
@@ -0,0 +1,29 @@
+# Release build scripts
+
+## Build environment
+
+The build environment can be setup using this command:
+
+```sh
+docker build pekko:build
+```
+
+## Release script
+
+`build-release.sh` will run the build, and provided gpg credentials by forwarding the GPG agent connection to the docker container.
+Understand the risk of exposing the gpg-agent to a container.
+
+```sh
+docker run \
+  -ti --rm \
+  -v `pwd`:/scripts:ro \
+  -v ${HOME}/.gnupg/:/home/user/.gnupg/:ro -v /run/user/$(id -u)/:/run/user/$(id -u)/:ro \
+  -e BUILD_COMMIT=origin/main \
+  -e GPG_SIGNING_KEY=8DEF770BCFC57CEC83BF0410DC20AD935AC6CEF4 \

Review Comment:
   Is this a real signing key?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@pekko.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@pekko.apache.org
For additional commands, e-mail: notifications-help@pekko.apache.org