Trying a new action

pull/1/head
s00ner 2022-01-28 16:10:19 -05:00
parent a32947f784
commit 193490e560
1 changed files with 16 additions and 11 deletions

View File

@ -1,13 +1,18 @@
name: Copy via ssh
on: [push]
jobs:
uses: garygrossgarten/github-action-scp@v0.7.3
with:
local: /
remote: /home/mdbook/wiki/src
host: ${{ secrets.HOST }}
port: ${{ secrets.SSH_PORT}}
username: ${{ secrets.USERNAME }}
privateKey: ${{ secrets.SSH_KEY}}
passphrase: ${{ secrets.KEY_PASS}}
jobs:
deploy_job:
runs-on: ubuntu-latest
name: deploy
steps:
- name: Checkout
uses: actions/checkout@v2
- name: deploy file
uses: wlixcc/SFTP-Deploy-Action@v1.0
with:
username: ${{ secrets.USERNAME}}
server: ${{ secrets.HOST}}
ssh_private_key: ${{ secrets.SSH_KEY }}
local_path: './*'
remote_path: '/home/mdbook/wiki/src'
args: '-o ConnectTimeout=5'