We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8aafebe commit 6079459Copy full SHA for 6079459
.github/workflows/pages.yaml
@@ -42,6 +42,13 @@ jobs:
42
uses: actions/upload-pages-artifact@v1
43
with:
44
path: "./public"
45
- - name: 🚀 Deploy Site
+ - name: 🚀 Deploy to GitHub Pages
46
id: deployment
47
- uses: actions/deploy-pages@v1
+ uses: actions/deploy-pages@v1
48
+ - name: 🔑 Load SSH Key
49
+ run: |
50
+ install -m 600 -D /dev/null ~/.ssh/id_rsa
51
+ echo "${{ secrets.PRIVATE_SSH_KEY }}" > ~/.ssh/id_rsa
52
+ - name: 🚀 Deploy to Website
53
+ run: rsync --archive --stats -e 'ssh -p 18765 -o StrictHostKeyChecking=no' public/ swharden.com@ssh.swharden.com:~/www/swharden.com/public_html/patch/
54
+
0 commit comments