mirror of
https://github.com/appleboy/scp-action.git
synced 2024-12-19 22:09:05 +00:00
chore: improve ci workflow
This commit is contained in:
parent
5cb36bda99
commit
b04405242e
12
.github/workflows/ci.yml
vendored
12
.github/workflows/ci.yml
vendored
@ -6,9 +6,11 @@ jobs:
|
|||||||
name: Build
|
name: Build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@master
|
- name: checkout
|
||||||
|
uses: actions/checkout@v1
|
||||||
|
|
||||||
- name: copy file via ssh password
|
- name: copy file via ssh password
|
||||||
uses: appleboy/scp-action@master
|
uses: ./
|
||||||
with:
|
with:
|
||||||
host: ${{ secrets.HOST }}
|
host: ${{ secrets.HOST }}
|
||||||
username: ${{ secrets.USERNAME }}
|
username: ${{ secrets.USERNAME }}
|
||||||
@ -18,7 +20,7 @@ jobs:
|
|||||||
target: "test"
|
target: "test"
|
||||||
|
|
||||||
- name: copy file via ssh key
|
- name: copy file via ssh key
|
||||||
uses: appleboy/scp-action@master
|
uses: ./
|
||||||
with:
|
with:
|
||||||
host: ${{ secrets.HOST }}
|
host: ${{ secrets.HOST }}
|
||||||
username: ${{ secrets.USERNAME }}
|
username: ${{ secrets.USERNAME }}
|
||||||
@ -28,7 +30,7 @@ jobs:
|
|||||||
target: "test"
|
target: "test"
|
||||||
|
|
||||||
- name: remove the specified number of leading path elements
|
- name: remove the specified number of leading path elements
|
||||||
uses: appleboy/scp-action@master
|
uses: ./
|
||||||
with:
|
with:
|
||||||
host: ${{ secrets.HOST }}
|
host: ${{ secrets.HOST }}
|
||||||
username: ${{ secrets.USERNAME }}
|
username: ${{ secrets.USERNAME }}
|
||||||
@ -39,7 +41,7 @@ jobs:
|
|||||||
strip_components: 1
|
strip_components: 1
|
||||||
|
|
||||||
- name: ssh key with passphrase
|
- name: ssh key with passphrase
|
||||||
uses: appleboy/scp-action@master
|
uses: ./
|
||||||
with:
|
with:
|
||||||
host: ${{ secrets.HOST }}
|
host: ${{ secrets.HOST }}
|
||||||
username: ${{ secrets.USERNAME }}
|
username: ${{ secrets.USERNAME }}
|
||||||
|
Loading…
Reference in New Issue
Block a user