This is an automated email from the ASF dual-hosted git repository. engelen pushed a commit to branch stage-release-candidates in repository https://gitbox.apache.org/repos/asf/pekko-http.git
commit 54aed9c7f1416a826ed03b110551392cc0afbbc8 Author: Arnout Engelen <[email protected]> AuthorDate: Fri Jan 9 18:17:35 2026 +0100 chore: improved staging from CI Some more HTTP prefixes --- .github/workflows/stage-release-candidate.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/stage-release-candidate.yml b/.github/workflows/stage-release-candidate.yml index 540411e04..24df0e3ba 100644 --- a/.github/workflows/stage-release-candidate.yml +++ b/.github/workflows/stage-release-candidate.yml @@ -104,11 +104,12 @@ jobs: cd dist export RC_VERSION=$(echo $REF | tail -c +2) + export DIR="HTTP-$RC_VERSION" - mkdir $RC_VERSION - cp ../archive/* $RC_VERSION - svn add $RC_VERSION - svn commit --username "$PEKKO_SVN_DEV_USERNAME" --password "$PEKKO_SVN_DEV_PASSWORD" --message "Stage Pekko $RC_VERSION" $RC_VERSION + mkdir $DIR + cp ../archive/* $DIR + svn add $DIR + svn commit --username "$PEKKO_SVN_DEV_USERNAME" --password "$PEKKO_SVN_DEV_PASSWORD" --message "Stage Pekko HTTP $RC_VERSION" $DIR env: PEKKO_SVN_DEV_USERNAME: ${{ secrets.PEKKO_SVN_DEV_USERNAME }} PEKKO_SVN_DEV_PASSWORD: ${{ secrets.PEKKO_SVN_DEV_PASSWORD }} @@ -253,7 +254,7 @@ jobs: export SENDER=$(curl "https://api.github.com/users/$ACTOR" | jq .name | tr -d \") echo "SENDER=$SENDER" - echo "This template can be used to start a vote, either via manual email or via https://release-test.apache.org/compose/pekko/$VERSION" + echo "This template can be used to start a vote, either via manual email or via https://release-test.apache.org/compose/pekko-http/$VERSION" echo cat <<EOF; Subject: [VOTE] Release Apache $MODULE $RC_VERSION @@ -268,8 +269,8 @@ jobs: The release candidate: - https://dist.apache.org/repos/dist/dev/pekko/$RC_VERSION - https://release-test.apache.org/vote/pekko/$VERSION + https://dist.apache.org/repos/dist/dev/pekko/HTTP-$RC_VERSION + https://release-test.apache.org/vote/pekko-http/$VERSION This release has been signed with a PGP key available here: @@ -327,7 +328,7 @@ jobs: https://pekko.apache.org/download.html#verifying-downloads - You can vote on ATR at https://release-test.apache.org/vote/pekko/$VERSION + You can vote on ATR at https://release-test.apache.org/vote/pekko-http/$VERSION or manually by replying to this email. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
