Fix: remove :ro from SSH key volume mount

The container needs write access to chmod 600 the key file.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-14 11:28:50 +10:00
parent 00a2a1347a
commit 7076d28de0
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -106,8 +106,8 @@ jobs:
docker run --rm \
--user root \
-v "$SSH_DIR/deploy_key":/root/.ssh/deploy_key:ro \
-v "$SSH_DIR/known_hosts":/root/.ssh/known_hosts:ro \
-v "$SSH_DIR/deploy_key":/root/.ssh/deploy_key \
-v "$SSH_DIR/known_hosts":/root/.ssh/known_hosts \
-e DOCKER_REGISTRY \
-e DOCKER_REGISTRY_TOKEN \
-e ORIGIN_CERT \