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 e8c726a commit 06c113fCopy full SHA for 06c113f
.github/workflows/ruby.yml
@@ -20,6 +20,12 @@ jobs:
20
gem install jekyll -v 3.8.5
21
jekyll build
22
23
- - name: Uploading files
24
- run: |
25
- scp -o StrictHostKeyChecking=no -r -P ${{ secrets.PORT }} _site ${{ secrets.USERNAME }}@${{ secrets.HOST }}:test
+ - name: Uploading website
+ uses: appleboy/scp-action@master
+ with:
26
+ host: ${{ secrets.HOST }}
27
+ username: ${{ secrets.USERNAME }}
28
+ password: ${{ secrets.PASSWORD }}
29
+ port: ${{ secrets.PORT }}
30
+ source: "_site"
31
+ target: "test"
0 commit comments