From 6357d82247676e6addcdf93af14d739b64aec543 Mon Sep 17 00:00:00 2001 From: Giacomo Vercesi Date: Thu, 10 Sep 2026 10:18:18 +0200 Subject: [PATCH] binary-archives-hook: fix docs push The docs ssh key is encoded in base64, decode it before feeding it to `ssh-add`. --- .orchestra/ci/binary-archives-hook.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.orchestra/ci/binary-archives-hook.sh b/.orchestra/ci/binary-archives-hook.sh index 0add0e8b..03c2e129 100755 --- a/.orchestra/ci/binary-archives-hook.sh +++ b/.orchestra/ci/binary-archives-hook.sh @@ -193,7 +193,7 @@ EOF chmod -R u=rwX,go=rX . # register the ssh key and push the docs via rsync - echo "$DOCS_SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - + base64 -d <<< "$DOCS_SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - rsync -qaz --stats \ --delay-updates \ --delete-after \