mirror of
https://ghproxy.net/https://github.com/appleboy/scp-action.git
synced 2025-04-04 05:48:24 +00:00
ci: add automated deployment for changed files
- Add a new job `changes` to the `ci.yml` file - Copy changed files to a server in the `changes` job - Add a YAML code block to the `README.md` file - Add `foobar` to `c.txt` and `d.txt` in the `tests` folder Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
This commit is contained in:
parent
43abfa778d
commit
3e8794afe7
29
.github/workflows/ci.yml
vendored
29
.github/workflows/ci.yml
vendored
@ -113,3 +113,32 @@ jobs:
|
||||
port: ${{ secrets.PORT }}
|
||||
source: distfiles/*
|
||||
target: test
|
||||
|
||||
changes:
|
||||
name: test changed-files
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Get changed files
|
||||
id: changed-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
|
||||
|
||||
- name: copy file to server
|
||||
uses: ./
|
||||
with:
|
||||
host: ${{ secrets.HOST }}
|
||||
username: ${{ secrets.USERNAME }}
|
||||
key: ${{ secrets.KEY }}
|
||||
port: ${{ secrets.PORT }}
|
||||
source: ${{ join(steps.changed-files.outputs.all_changed_files, ',') }}
|
||||
target: test
|
||||
|
33
README.md
33
README.md
@ -251,6 +251,39 @@ Remove the specified number of leading path elements:
|
||||
strip_components: 1
|
||||
```
|
||||
|
||||
Only copy files that are newer than the corresponding destination files:
|
||||
|
||||
```yaml
|
||||
changes:
|
||||
name: test changed-files
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Get changed files
|
||||
id: changed-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
|
||||
|
||||
- name: copy file to server
|
||||
uses: ./
|
||||
with:
|
||||
host: ${{ secrets.HOST }}
|
||||
username: ${{ secrets.USERNAME }}
|
||||
key: ${{ secrets.KEY }}
|
||||
port: ${{ secrets.PORT }}
|
||||
source: ${{ join(steps.changed-files.outputs.all_changed_files, ',') }}
|
||||
target: test
|
||||
```
|
||||
|
||||
Old target structure:
|
||||
|
||||
```sh
|
||||
|
@ -1 +1,3 @@
|
||||
c
|
||||
foobar
|
||||
test1234
|
||||
|
@ -1 +1,3 @@
|
||||
d
|
||||
foobar
|
||||
foobar
|
||||
|
Loading…
Reference in New Issue
Block a user