-
-
Notifications
You must be signed in to change notification settings - Fork 575
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update SSH action version in README files
- Update the version of the `appleboy/ssh-action` to `v1.0.2` in the `README.md` and `README.zh-tw.md` files. Signed-off-by: Bo-Yi Wu <[email protected]>
- Loading branch information
Showing
2 changed files
with
24 additions
and
24 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 |
---|---|---|
|
@@ -63,7 +63,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: executing remote ssh commands using password | ||
uses: appleboy/[email protected].1 | ||
uses: appleboy/[email protected].2 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|
@@ -164,7 +164,7 @@ ssh-keygen -t ed25519 -a 200 -C "[email protected]" | |
|
||
```yaml | ||
- name: executing remote ssh commands using password | ||
uses: appleboy/[email protected].1 | ||
uses: appleboy/[email protected].2 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|
@@ -177,7 +177,7 @@ ssh-keygen -t ed25519 -a 200 -C "[email protected]" | |
```yaml | ||
- name: executing remote ssh commands using ssh key | ||
uses: appleboy/[email protected].1 | ||
uses: appleboy/[email protected].2 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|
@@ -190,7 +190,7 @@ ssh-keygen -t ed25519 -a 200 -C "[email protected]" | |
```yaml | ||
- name: multiple command | ||
uses: appleboy/[email protected].1 | ||
uses: appleboy/[email protected].2 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|
@@ -207,7 +207,7 @@ ssh-keygen -t ed25519 -a 200 -C "[email protected]" | |
```diff | ||
- name: multiple host | ||
uses: appleboy/[email protected].1 | ||
uses: appleboy/[email protected].2 | ||
with: | ||
- host: "foo.com" | ||
+ host: "foo.com,bar.com" | ||
|
@@ -223,7 +223,7 @@ ssh-keygen -t ed25519 -a 200 -C "[email protected]" | |
```diff | ||
- name: multiple host | ||
uses: appleboy/[email protected].1 | ||
uses: appleboy/[email protected].2 | ||
with: | ||
- host: "foo.com" | ||
+ host: "foo.com:1234,bar.com:5678" | ||
|
@@ -238,7 +238,7 @@ ssh-keygen -t ed25519 -a 200 -C "[email protected]" | |
```diff | ||
- name: multiple host | ||
uses: appleboy/[email protected].1 | ||
uses: appleboy/[email protected].2 | ||
with: | ||
host: "foo.com,bar.com" | ||
+ sync: true | ||
|
@@ -254,7 +254,7 @@ ssh-keygen -t ed25519 -a 200 -C "[email protected]" | |
```diff | ||
- name: pass environment | ||
uses: appleboy/[email protected].1 | ||
uses: appleboy/[email protected].2 | ||
+ env: | ||
+ FOO: "BAR" | ||
+ BAR: "FOO" | ||
|
@@ -279,7 +279,7 @@ _Inside `env` object, you need to pass every environment variable as a string, p | |
|
||
```diff | ||
- name: stop script if command error | ||
uses: appleboy/[email protected].1 | ||
uses: appleboy/[email protected].2 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|
@@ -332,7 +332,7 @@ Host FooServer | |
|
||
```diff | ||
- name: ssh proxy command | ||
uses: appleboy/[email protected].1 | ||
uses: appleboy/[email protected].2 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|
@@ -355,7 +355,7 @@ It is not uncommon for files to leak from backups or decommissioned hardware, an | |
|
||
```diff | ||
- name: ssh key passphrase | ||
uses: appleboy/[email protected].1 | ||
uses: appleboy/[email protected].2 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|
@@ -381,7 +381,7 @@ Now you can adjust you config: | |
|
||
```diff | ||
- name: ssh key passphrase | ||
uses: appleboy/[email protected].1 | ||
uses: appleboy/[email protected].2 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|
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 |
---|---|---|
|
@@ -58,7 +58,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: executing remote ssh commands using password | ||
uses: appleboy/[email protected].1 | ||
uses: appleboy/[email protected].2 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|
@@ -157,7 +157,7 @@ ssh-keygen -t ed25519 -a 200 -C "[email protected]" | |
|
||
```yaml | ||
- name: executing remote ssh commands using password | ||
uses: appleboy/[email protected].1 | ||
uses: appleboy/[email protected].2 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|
@@ -170,7 +170,7 @@ ssh-keygen -t ed25519 -a 200 -C "[email protected]" | |
```yaml | ||
- name: executing remote ssh commands using ssh key | ||
uses: appleboy/[email protected].1 | ||
uses: appleboy/[email protected].2 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|
@@ -183,7 +183,7 @@ ssh-keygen -t ed25519 -a 200 -C "[email protected]" | |
```yaml | ||
- name: multiple command | ||
uses: appleboy/[email protected].1 | ||
uses: appleboy/[email protected].2 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|
@@ -200,7 +200,7 @@ ssh-keygen -t ed25519 -a 200 -C "[email protected]" | |
```diff | ||
- name: multiple host | ||
uses: appleboy/[email protected].1 | ||
uses: appleboy/[email protected].2 | ||
with: | ||
- host: "foo.com" | ||
+ host: "foo.com,bar.com" | ||
|
@@ -216,7 +216,7 @@ ssh-keygen -t ed25519 -a 200 -C "[email protected]" | |
```diff | ||
- name: multiple host | ||
uses: appleboy/[email protected].1 | ||
uses: appleboy/[email protected].2 | ||
with: | ||
- host: "foo.com" | ||
+ host: "foo.com:1234,bar.com:5678" | ||
|
@@ -231,7 +231,7 @@ ssh-keygen -t ed25519 -a 200 -C "[email protected]" | |
```diff | ||
- name: multiple host | ||
uses: appleboy/[email protected].1 | ||
uses: appleboy/[email protected].2 | ||
with: | ||
host: "foo.com,bar.com" | ||
+ sync: true | ||
|
@@ -247,7 +247,7 @@ ssh-keygen -t ed25519 -a 200 -C "[email protected]" | |
```diff | ||
- name: pass environment | ||
uses: appleboy/[email protected].1 | ||
uses: appleboy/[email protected].2 | ||
+ env: | ||
+ FOO: "BAR" | ||
+ BAR: "FOO" | ||
|
@@ -272,7 +272,7 @@ _在 `env` 對象中,您需要將每個環境變量作為字符串傳遞,傳 | |
|
||
```diff | ||
- name: stop script if command error | ||
uses: appleboy/[email protected].1 | ||
uses: appleboy/[email protected].2 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|
@@ -325,7 +325,7 @@ Host FooServer | |
|
||
```diff | ||
- name: ssh proxy command | ||
uses: appleboy/[email protected].1 | ||
uses: appleboy/[email protected].2 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|
@@ -346,7 +346,7 @@ Host FooServer | |
|
||
```diff | ||
- name: ssh key passphrase | ||
uses: appleboy/[email protected].1 | ||
uses: appleboy/[email protected].2 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|
@@ -372,7 +372,7 @@ ssh example.com ssh-keygen -l -f /etc/ssh/ssh_host_ed25519_key.pub | cut -d ' ' | |
|
||
```diff | ||
- name: ssh key passphrase | ||
uses: appleboy/[email protected].1 | ||
uses: appleboy/[email protected].2 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|