Fixed scp command in deploy workflow
All checks were successful
Deploying Static Site / Build (push) Successful in 31s

This commit is contained in:
Silas Bartha 2025-03-15 18:09:35 -04:00
parent 555a0f0158
commit 5110a564aa
Signed by: soaos
GPG Key ID: 9BD3DCC0D56A09B2

View File

@ -17,5 +17,7 @@ jobs:
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_ed25519
ssh-keyscan -H 192.168.1.113 > ~/.ssh/known_hosts
- name: Copy built site to server
run: scp -sr public git@192.168.1.113:/var/www/soaos.dev
run: |
ssh git@192.168.1.113 "rm -rf /var/www/soaos.dev && mkdir /var/www/soaos.dev"
scp -sr public/ git@192.168.1.113:/var/www/soaos.dev