fix: remove chmod on read-only mounted preload key
Deploy Claude Dev (Dev) / deploy-claude-dev-dev (push) Failing after 11m51s

Drop chmod on the read-only mounted server2 SSH key so preload can execute without failing the workflow before the SSH attempt.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Gan, Jimmy
2026-03-03 01:30:01 +08:00
parent d7b2cb3885
commit a683321d92
@@ -57,7 +57,6 @@ jobs:
if: env.ROLLBACK_ONLY == '0'
run: |
set -euo pipefail
chmod 600 /runner-ssh/server2_key
if ssh -i /runner-ssh/server2_key -o IdentitiesOnly=yes -o StrictHostKeyChecking=accept-new jimmyg@158.101.140.85 "podman pull docker.io/library/node:20-bookworm-slim >/dev/null && podman save docker.io/library/node:20-bookworm-slim" | docker load; then
echo "Preloaded node:20-bookworm-slim from server2"
else