This is an automated email from the ASF dual-hosted git repository.

engelen pushed a commit to tag x2.0.0-M1-RC12
in repository https://gitbox.apache.org/repos/asf/pekko.git

commit e5a1d042f4675ae7d131571cd73f6f0e613a0067
Author: Arnout Engelen <[email protected]>
AuthorDate: Sun Nov 23 10:11:36 2025 +0100

    try passing the password via stdin
---
 .github/workflows/stage-release-candidate.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/stage-release-candidate.yml 
b/.github/workflows/stage-release-candidate.yml
index 49794da61f..76ec7a70e9 100644
--- a/.github/workflows/stage-release-candidate.yml
+++ b/.github/workflows/stage-release-candidate.yml
@@ -103,7 +103,7 @@ jobs:
           cp ../archive/* $RC_VERSION
           svn add $RC_VERSION
           echo $PEKKO_SVN_DEV_USERNAME
-          svn commit --username '$PEKKO_SVN_DEV_USERNAME' --password 
'$PEKKO_SVN_DEV_PASSWORD' --message "Stage Pekko $RC_VERSION" $RC_VERSION
+          printf "%s" "$PEKKO_SVN_DEV_PASSWORD" | svn commit --username 
'$PEKKO_SVN_DEV_USERNAME' --password-from-stdin --message "Stage Pekko 
$RC_VERSION" $RC_VERSION
         env:
           PEKKO_SVN_DEV_USERNAME: ${{ secrets.PEKKO_SVN_DEV_USERNAME }}
           PEKKO_SVN_DEV_PASSWORD: ${{ secrets.PEKKO_SVN_DEV_PASSWORD }}


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to