mirror of
https://github.com/appleboy/scp-action.git
synced 2026-07-07 16:05:41 +00:00
Compare commits
No commits in common. "5878fc908fe21ff5041828e0e01da8a0f89f18c5" and "b03ad1c1245f7387f6167907e7c012310a08c87f" have entirely different histories.
5878fc908f
...
b03ad1c124
25
.github/workflows/ci.yml
vendored
25
.github/workflows/ci.yml
vendored
@ -1,6 +1,7 @@
|
|||||||
name: scp files
|
name: scp files
|
||||||
on: [push]
|
on: [push]
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
testing:
|
testing:
|
||||||
name: test scp action
|
name: test scp action
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@ -62,6 +63,28 @@ jobs:
|
|||||||
target: "test"
|
target: "test"
|
||||||
use_insecure_cipher: true
|
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"
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
name: test deploy artifact
|
name: test deploy artifact
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@ -100,7 +123,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Get changed files
|
- name: Get changed files
|
||||||
id: changed-files
|
id: changed-files
|
||||||
uses: tj-actions/changed-files@v37
|
uses: tj-actions/changed-files@v40
|
||||||
with:
|
with:
|
||||||
since_last_remote_commit: true
|
since_last_remote_commit: true
|
||||||
separator: ","
|
separator: ","
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
FROM ghcr.io/appleboy/drone-scp:1.6.12
|
FROM ghcr.io/appleboy/drone-scp:1.6.10
|
||||||
|
|
||||||
COPY entrypoint.sh /bin/entrypoint.sh
|
COPY entrypoint.sh /entrypoint.sh
|
||||||
|
RUN chmod +x /entrypoint.sh
|
||||||
ENTRYPOINT ["/bin/entrypoint.sh"]
|
ENTRYPOINT ["/entrypoint.sh"]
|
||||||
|
|||||||
22
README.md
22
README.md
@ -21,7 +21,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: copy file via ssh password
|
- name: copy file via ssh password
|
||||||
uses: appleboy/scp-action@v0.1.5
|
uses: appleboy/scp-action@v0.1.4
|
||||||
with:
|
with:
|
||||||
host: ${{ secrets.HOST }}
|
host: ${{ secrets.HOST }}
|
||||||
username: ${{ secrets.USERNAME }}
|
username: ${{ secrets.USERNAME }}
|
||||||
@ -137,7 +137,7 @@ Copy file via a SSH password:
|
|||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
- name: copy file via ssh password
|
- name: copy file via ssh password
|
||||||
uses: appleboy/scp-action@v0.1.5
|
uses: appleboy/scp-action@v0.1.4
|
||||||
with:
|
with:
|
||||||
host: example.com
|
host: example.com
|
||||||
username: foo
|
username: foo
|
||||||
@ -151,7 +151,7 @@ Copy file via a SSH key:
|
|||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
- name: copy file via ssh key
|
- name: copy file via ssh key
|
||||||
uses: appleboy/scp-action@v0.1.5
|
uses: appleboy/scp-action@v0.1.4
|
||||||
with:
|
with:
|
||||||
host: ${{ secrets.HOST }}
|
host: ${{ secrets.HOST }}
|
||||||
username: ${{ secrets.USERNAME }}
|
username: ${{ secrets.USERNAME }}
|
||||||
@ -165,7 +165,7 @@ Example configuration for ignore list:
|
|||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
- name: copy file via ssh key
|
- name: copy file via ssh key
|
||||||
uses: appleboy/scp-action@v0.1.5
|
uses: appleboy/scp-action@v0.1.4
|
||||||
with:
|
with:
|
||||||
host: ${{ secrets.HOST }}
|
host: ${{ secrets.HOST }}
|
||||||
username: ${{ secrets.USERNAME }}
|
username: ${{ secrets.USERNAME }}
|
||||||
@ -178,7 +178,7 @@ Example configuration for ignore list:
|
|||||||
Example configuration for multiple servers:
|
Example configuration for multiple servers:
|
||||||
|
|
||||||
```diff
|
```diff
|
||||||
uses: appleboy/scp-action@v0.1.5
|
uses: appleboy/scp-action@v0.1.4
|
||||||
with:
|
with:
|
||||||
- host: "example.com"
|
- host: "example.com"
|
||||||
+ host: "foo.com,bar.com"
|
+ host: "foo.com,bar.com"
|
||||||
@ -192,7 +192,7 @@ Example configuration for multiple servers:
|
|||||||
Example configuration for exclude custom files:
|
Example configuration for exclude custom files:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
uses: appleboy/scp-action@v0.1.5
|
uses: appleboy/scp-action@v0.1.4
|
||||||
with:
|
with:
|
||||||
host: "example.com"
|
host: "example.com"
|
||||||
username: foo
|
username: foo
|
||||||
@ -226,7 +226,7 @@ Upload artifact files to remote server:
|
|||||||
path: distfiles
|
path: distfiles
|
||||||
|
|
||||||
- name: copy file to server
|
- name: copy file to server
|
||||||
uses: appleboy/scp-action@v0.1.5
|
uses: appleboy/scp-action@v0.1.4
|
||||||
with:
|
with:
|
||||||
host: ${{ secrets.HOST }}
|
host: ${{ secrets.HOST }}
|
||||||
username: ${{ secrets.USERNAME }}
|
username: ${{ secrets.USERNAME }}
|
||||||
@ -240,7 +240,7 @@ Remove the specified number of leading path elements:
|
|||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
- name: remove the specified number of leading path elements
|
- name: remove the specified number of leading path elements
|
||||||
uses: appleboy/scp-action@v0.1.5
|
uses: appleboy/scp-action@v0.1.4
|
||||||
with:
|
with:
|
||||||
host: ${{ secrets.HOST }}
|
host: ${{ secrets.HOST }}
|
||||||
username: ${{ secrets.USERNAME }}
|
username: ${{ secrets.USERNAME }}
|
||||||
@ -286,7 +286,7 @@ Only copy files that are newer than the corresponding destination files:
|
|||||||
separator: ","
|
separator: ","
|
||||||
|
|
||||||
- name: copy file to server
|
- name: copy file to server
|
||||||
uses: appleboy/scp-action@v0.1.5
|
uses: appleboy/scp-action@v0.1.4
|
||||||
with:
|
with:
|
||||||
host: ${{ secrets.HOST }}
|
host: ${{ secrets.HOST }}
|
||||||
username: ${{ secrets.USERNAME }}
|
username: ${{ secrets.USERNAME }}
|
||||||
@ -300,7 +300,7 @@ Protecting a Private Key. The purpose of the passphrase is usually to encrypt th
|
|||||||
|
|
||||||
```diff
|
```diff
|
||||||
- name: ssh key with passphrase
|
- name: ssh key with passphrase
|
||||||
uses: appleboy/scp-action@v0.1.5
|
uses: appleboy/scp-action@v0.1.4
|
||||||
with:
|
with:
|
||||||
host: ${{ secrets.HOST }}
|
host: ${{ secrets.HOST }}
|
||||||
username: ${{ secrets.USERNAME }}
|
username: ${{ secrets.USERNAME }}
|
||||||
@ -329,7 +329,7 @@ Convert the target path to a Unix path: `/c/path/to/target/`
|
|||||||
|
|
||||||
```diff
|
```diff
|
||||||
- name: Copy to Windows
|
- name: Copy to Windows
|
||||||
uses: appleboy/scp-action@v0.1.5
|
uses: appleboy/scp-action@v0.1.4
|
||||||
with:
|
with:
|
||||||
host: ${{ secrets.HOST }}
|
host: ${{ secrets.HOST }}
|
||||||
username: ${{ secrets.USERNAME }}
|
username: ${{ secrets.USERNAME }}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user