trying to ssh into jmopines web server
All checks were successful
Build Resume / build (push) Successful in 2s

This commit is contained in:
Jean-Michel Tremblay 2026-04-19 21:23:46 -04:00
parent ddef74e2d8
commit 3019a22f9d

View file

@ -18,3 +18,9 @@ jobs:
with: with:
name: resume name: resume
path: examples/resume_jm_tremblay*.pdf path: examples/resume_jm_tremblay*.pdf
- name: Deploy
run: |
echo "${{ secrets.FORGEJO_SSH }}" > /tmp/deploy_key
chmod 600 /tmp/deploy_key
ssh -i /tmp/deploy_key -o StrictHostKeyChecking=no jmopines@192.168.64.102 "echo connected"
rm /tmp/deploy_key