mirror of
https://ghproxy.net/https://github.com/appleboy/scp-action.git
synced 2025-04-04 05:48:24 +00:00
update
Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
This commit is contained in:
parent
c2a7fc92f0
commit
ec47354430
11
README.md
11
README.md
@ -266,21 +266,16 @@ Only copy files that are newer than the corresponding destination files:
|
||||
uses: tj-actions/changed-files@v35
|
||||
with:
|
||||
since_last_remote_commit: true
|
||||
|
||||
- name: List all changed files
|
||||
run: |
|
||||
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
|
||||
echo "$file was changed"
|
||||
done
|
||||
separator: ","
|
||||
|
||||
- name: copy file to server
|
||||
uses: ./
|
||||
uses: appleboy/scp-action@master
|
||||
with:
|
||||
host: ${{ secrets.HOST }}
|
||||
username: ${{ secrets.USERNAME }}
|
||||
key: ${{ secrets.KEY }}
|
||||
port: ${{ secrets.PORT }}
|
||||
source: ${{ join(steps.changed-files.outputs.all_changed_files, ',') }}
|
||||
source: ${{ steps.changed-files.outputs.all_changed_files }}
|
||||
target: test
|
||||
```
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user