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

65 lines
1.7 KiB
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:
2020-02-14 00:49:23 +08:00
- name: checkout
uses: actions/checkout@v3
2020-02-14 00:49:23 +08:00
2019-09-28 10:54:49 +08:00
- name: copy file via ssh password
2020-02-14 00:49:23 +08:00
uses: ./
2019-09-28 10:54:49 +08:00
with:
2019-09-28 12:13:03 +08:00
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
port: ${{ secrets.PORT }}
2019-09-28 10:54:49 +08:00
source: "tests/a.txt,tests/b.txt"
2019-09-28 11:37:34 +08:00
target: "test"
2019-09-28 12:01:18 +08:00
- name: copy file via ssh key
2020-02-14 00:49:23 +08:00
uses: ./
2019-09-28 12:01:18 +08:00
with:
2019-09-28 12:16:21 +08:00
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.KEY }}
port: ${{ secrets.PORT }}
2019-09-28 12:01:18 +08:00
source: "tests/a.txt,tests/b.txt"
target: "test"
2019-09-28 12:26:40 +08:00
- name: remove the specified number of leading path elements
2020-02-14 00:49:23 +08:00
uses: ./
2019-09-28 12:26:40 +08:00
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.KEY }}
port: ${{ secrets.PORT }}
source: "tests/a.txt,tests/b.txt"
target: "foobar"
strip_components: 1
2020-01-20 22:51:17 +08:00
- name: ssh key with passphrase
2020-02-14 00:49:23 +08:00
uses: ./
2020-01-20 22:51:17 +08:00
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.SSH2 }}
passphrase: ${{ secrets.PASSPHRASE }}
port: ${{ secrets.PORT }}
source: "tests/a.txt,tests/b.txt"
target: "test"
- name: use insecure cipher
uses: ./
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.SSH2 }}
passphrase: ${{ secrets.PASSPHRASE }}
port: ${{ secrets.PORT }}
source: "tests/a.txt,tests/b.txt"
target: "test"
use_insecure_cipher: true