feat: try fix cd
CI / 🔍 Lint & Type Check (push) Successful in 1m4s
CI / 🐳 Build & Push Image (push) Successful in 6s

This commit is contained in:
2026-07-10 22:44:02 +02:00
parent ce1136e81a
commit 11e3c4ab20
+1 -17
View File
@@ -15,25 +15,9 @@ jobs:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
steps:
- name: 🔍 Debug environnement runner
run: |
echo "=== USER ==="
whoami || echo "whoami failed"
echo "=== HOME ==="
echo "HOME=${HOME}"
echo "=== Variables env ==="
env | grep -E "HOME|USER|RUNNER|GITHUB" || true
echo "=== Permissions / ==="
ls -la / | head -20 || true
echo "=== Permissions $HOME ==="
ls -la "$HOME" || echo "Impossible de lister HOME"
echo "=== Test écriture ==="
touch "$HOME/test_write" && echo "Écriture OK" || echo "Écriture IMPOSSIBLE"
- name: Configuration SSH
run: |
echo "HOME=${HOME}"
mkdir -p "$HOME/.ssh" && echo "mkdir OK" || echo "mkdir FAILED"
mkdir -p "$HOME/.ssh"
echo "${{ secrets.DEPLOY_SSH_KEY }}" \
> "$HOME/.ssh/id_ed25519"
chmod 600 "$HOME/.ssh/id_ed25519"