Skip to content

Commit

Permalink
CI: disable strict host checking
Browse files Browse the repository at this point in the history
  • Loading branch information
swharden committed Feb 9, 2024
1 parent 220d4b0 commit 12af8ed
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,9 @@ jobs:
run: |
install -m 600 -D /dev/null ~/.ssh/id_rsa
echo "${{ secrets.PRIVATE_SSH_KEY }}" > ~/.ssh/id_rsa
echo "${{ secrets.KNOWN_HOSTS }}" > ~/.ssh/known_hosts
- name: 🚀 Deploy WASM
run: rsync --archive --delete --stats -e 'ssh -p 18765' './public/wwwroot/_framework/' 'swharden.com@ssh.swharden.com:~/www/swharden.com/public_html/LJPcalc/_framework/'
run: rsync --archive --delete --stats -e 'ssh -p 18765 -o StrictHostKeyChecking=no' './public/wwwroot/_framework/' 'swharden.com@ssh.swharden.com:~/www/swharden.com/public_html/LJPcalc/_framework/'
- name: 🚀 Deploy index.html
run: rsync -e 'ssh -p 18765' './public/wwwroot/index.html' 'swharden.com@ssh.swharden.com:~/www/swharden.com/public_html/LJPcalc/index.html'
run: rsync -e 'ssh -p 18765 -o StrictHostKeyChecking=no' './public/wwwroot/index.html' 'swharden.com@ssh.swharden.com:~/www/swharden.com/public_html/LJPcalc/index.html'
- name: 🧹 Clear Cache
run: ssh swharden.com@ssh.swharden.com -p 18765 "site-tools-client domain update id=1 flush_cache=1"

0 comments on commit 12af8ed

Please sign in to comment.