scp-action/.github/workflows/ci.yml

22 lines
482 B
YAML
Raw Normal View History

2019-09-28 10:54:49 +08:00
name: scp files
on: [push]
jobs:
2019-05-11 17:01:31 +08:00
2019-09-28 10:54:49 +08:00
build:
name: Build
runs-on: ubuntu-latest
steps:
2019-05-11 19:28:30 +08:00
2019-09-28 11:15:01 +08:00
- uses: actions/checkout@master
2019-09-28 10:54:49 +08:00
- name: copy file via ssh password
uses: appleboy/scp-action@master
env:
HOST: ${{ secrets.HOST }}
USERNAME: ${{ secrets.USERNAME }}
PASSWORD: ${{ secrets.PASSWORD }}
with:
source: "tests/a.txt,tests/b.txt"
target: "/home/actions/test"
2019-09-28 11:10:11 +08:00
timeout: 30s
command_timeout: 30s