-
-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update drone-scp to v1.6.12 version (#154)
* chore: update Dockerfile and CI configuration - Remove unnecessary steps in the `testing` job in `ci.yml` - Update the base image in `Dockerfile` to version 1.6.12 - Change the location of the `entrypoint.sh` file in `Dockerfile` Signed-off-by: appleboy <appleboy.tw@gmail.com> * update Signed-off-by: appleboy <appleboy.tw@gmail.com> --------- Signed-off-by: appleboy <appleboy.tw@gmail.com>
- Loading branch information
Showing
2 changed files
with
127 additions
and
150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,173 +1,150 @@ | ||
name: scp files | ||
on: [push] | ||
jobs: | ||
|
||
testing: | ||
name: test scp action | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: copy file via ssh password | ||
uses: ./ | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
password: ${{ secrets.PASSWORD }} | ||
port: ${{ secrets.PORT }} | ||
source: "tests/a.txt,tests/b.txt" | ||
target: "test" | ||
|
||
- name: copy file via ssh key | ||
uses: ./ | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
key: ${{ secrets.KEY }} | ||
port: ${{ secrets.PORT }} | ||
source: "tests/a.txt,tests/b.txt" | ||
target: "test" | ||
|
||
- name: remove the specified number of leading path elements | ||
uses: ./ | ||
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 | ||
|
||
- name: ssh key with passphrase | ||
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" | ||
|
||
- 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 | ||
|
||
- name: correct key but wrong password | ||
uses: appleboy/scp-action@7af00892de6f8397c5c3393cfb3b32ae7f91b94b | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
key: ${{ secrets.KEY }} | ||
password: abcdefg | ||
port: ${{ secrets.PORT }} | ||
source: "tests/a.txt,tests/b.txt" | ||
target: "test" | ||
|
||
- name: correct password but wrong key | ||
uses: appleboy/scp-action@7af00892de6f8397c5c3393cfb3b32ae7f91b94b | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
key: abcdefg | ||
password: ${{ secrets.PASSWORD }} | ||
port: ${{ secrets.PORT }} | ||
source: "tests/a.txt,tests/b.txt" | ||
target: "test" | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: copy file via ssh password | ||
uses: ./ | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
password: ${{ secrets.PASSWORD }} | ||
port: ${{ secrets.PORT }} | ||
source: "tests/a.txt,tests/b.txt" | ||
target: "test" | ||
|
||
- name: copy file via ssh key | ||
uses: ./ | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
key: ${{ secrets.KEY }} | ||
port: ${{ secrets.PORT }} | ||
source: "tests/a.txt,tests/b.txt" | ||
target: "test" | ||
|
||
- name: remove the specified number of leading path elements | ||
uses: ./ | ||
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 | ||
|
||
- name: ssh key with passphrase | ||
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" | ||
|
||
- 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 | ||
|
||
deploy: | ||
name: test deploy artifact | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
|
||
- run: echo hello > world.txt | ||
|
||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: my-artifact | ||
path: world.txt | ||
|
||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: my-artifact | ||
path: distfiles | ||
|
||
- name: copy file to server | ||
uses: ./ | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
key: ${{ secrets.KEY }} | ||
port: ${{ secrets.PORT }} | ||
source: distfiles/* | ||
target: test | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
|
||
- run: echo hello > world.txt | ||
|
||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: my-artifact | ||
path: world.txt | ||
|
||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: my-artifact | ||
path: distfiles | ||
|
||
- name: copy file to server | ||
uses: ./ | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
key: ${{ secrets.KEY }} | ||
port: ${{ secrets.PORT }} | ||
source: distfiles/* | ||
target: test | ||
|
||
changes: | ||
name: test changed-files | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Get changed files | ||
id: changed-files | ||
uses: tj-actions/changed-files@v40 | ||
with: | ||
since_last_remote_commit: true | ||
separator: "," | ||
|
||
- name: copy file to server | ||
uses: ./ | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
key: ${{ secrets.KEY }} | ||
port: ${{ secrets.PORT }} | ||
source: ${{ steps.changed-files.outputs.all_changed_files }} | ||
target: test | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Get changed files | ||
id: changed-files | ||
uses: tj-actions/changed-files@v37 | ||
with: | ||
since_last_remote_commit: true | ||
separator: "," | ||
|
||
- name: copy file to server | ||
uses: ./ | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
key: ${{ secrets.KEY }} | ||
port: ${{ secrets.PORT }} | ||
source: ${{ steps.changed-files.outputs.all_changed_files }} | ||
target: test | ||
|
||
target: | ||
name: test target folder | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: copy file to server | ||
uses: ./ | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
key: ${{ secrets.KEY }} | ||
port: ${{ secrets.PORT }} | ||
source: tests/a.txt,tests/b.txt | ||
target: foobar foobar 1234 | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: copy file to server | ||
uses: ./ | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
key: ${{ secrets.KEY }} | ||
port: ${{ secrets.PORT }} | ||
source: tests/a.txt,tests/b.txt | ||
target: foobar foobar 1234 | ||
|
||
multipleHost: | ||
name: test Multiple Host | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: copy file to server | ||
uses: ./ | ||
with: | ||
host: ${{ secrets.HOST }}:${{ secrets.PORT }},${{ secrets.HOST }}:${{ secrets.PORT }} | ||
username: ${{ secrets.USERNAME }} | ||
key: ${{ secrets.KEY }} | ||
port: 1024 | ||
source: tests/a.txt,tests/b.txt | ||
target: foobar | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: copy file to server | ||
uses: ./ | ||
with: | ||
host: ${{ secrets.HOST }}:${{ secrets.PORT }},${{ secrets.HOST }}:${{ secrets.PORT }} | ||
username: ${{ secrets.USERNAME }} | ||
key: ${{ secrets.KEY }} | ||
port: 1024 | ||
source: tests/a.txt,tests/b.txt | ||
target: foobar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
FROM ghcr.io/appleboy/drone-scp:1.6.10 | ||
FROM ghcr.io/appleboy/drone-scp:1.6.12 | ||
|
||
COPY entrypoint.sh /entrypoint.sh | ||
RUN chmod +x /entrypoint.sh | ||
ENTRYPOINT ["/entrypoint.sh"] | ||
COPY entrypoint.sh /bin/entrypoint.sh | ||
|
||
ENTRYPOINT ["/bin/entrypoint.sh"] |