This commit is contained in:
parent
c140fce68c
commit
09f0ba8920
1 changed files with 13 additions and 1 deletions
|
@ -24,4 +24,16 @@ jobs:
|
||||||
# extended: true
|
# extended: true
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: hugo --minify
|
run: hugo --minify
|
||||||
|
- name: Test
|
||||||
|
run: ls -lah
|
||||||
|
|
||||||
|
- name: copy file via ssh password
|
||||||
|
uses: appleboy/scp-action@v0.1.4
|
||||||
|
with:
|
||||||
|
host: ${{ secrets.HOST }}
|
||||||
|
username: ${{ secrets.USERNAME }}
|
||||||
|
key: ${{ secrets.KEY }}
|
||||||
|
port: ${{ secrets.PORT }}
|
||||||
|
source: "tests/a.txt,tests/b.txt"
|
||||||
|
target: your_server_target_folder_path
|
Reference in a new issue