-
-
Notifications
You must be signed in to change notification settings - Fork 609
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: enhance CI/CD workflows and documentation formatting
- Update `appleboy/ssh-action` from version `v1.0.3` to `v1.1.0` in multiple instances - Fix table formatting in `README.md` Signed-off-by: appleboy <[email protected]>
- Loading branch information
Showing
3 changed files
with
38 additions
and
38 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 |
---|---|---|
|
@@ -18,7 +18,7 @@ This thing is built using [Golang](https://go.dev) and [drone-ssh](https://githu | |
See [action.yml](./action.yml) for more detailed information. | ||
|
||
| Input Parameter | Description | Default Value | | ||
|---------------------------|------------------------------------------------------------------------------------------|---------------| | ||
| ------------------------- | ---------------------------------------------------------------------------------------- | ------------- | | ||
| host | SSH host address | | | ||
| port | SSH port number | 22 | | ||
| passphrase | SSH key passphrase | | | ||
|
@@ -66,7 +66,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: executing remote ssh commands using password | ||
uses: appleboy/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|
@@ -182,7 +182,7 @@ ssh-keygen -t ed25519 -a 200 -C "[email protected]" | |
|
||
```yaml | ||
- name: executing remote ssh commands using password | ||
uses: appleboy/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|
@@ -195,7 +195,7 @@ ssh-keygen -t ed25519 -a 200 -C "[email protected]" | |
```yaml | ||
- name: executing remote ssh commands using ssh key | ||
uses: appleboy/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|
@@ -208,7 +208,7 @@ ssh-keygen -t ed25519 -a 200 -C "[email protected]" | |
```yaml | ||
- name: multiple command | ||
uses: appleboy/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|
@@ -225,7 +225,7 @@ ssh-keygen -t ed25519 -a 200 -C "[email protected]" | |
```diff | ||
- name: multiple host | ||
uses: appleboy/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
with: | ||
- host: "foo.com" | ||
+ host: "foo.com,bar.com" | ||
|
@@ -243,7 +243,7 @@ The default value of `port` is `22`. | |
|
||
```diff | ||
- name: multiple host | ||
uses: appleboy/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
with: | ||
- host: "foo.com" | ||
+ host: "foo.com:1234,bar.com:5678" | ||
|
@@ -258,7 +258,7 @@ The default value of `port` is `22`. | |
|
||
```diff | ||
- name: multiple host | ||
uses: appleboy/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
with: | ||
host: "foo.com,bar.com" | ||
+ sync: true | ||
|
@@ -274,7 +274,7 @@ The default value of `port` is `22`. | |
|
||
```diff | ||
- name: pass environment | ||
uses: appleboy/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
+ env: | ||
+ FOO: "BAR" | ||
+ BAR: "FOO" | ||
|
@@ -299,7 +299,7 @@ _Inside `env` object, you need to pass every environment variable as a string, p | |
|
||
```diff | ||
- name: stop script if command error | ||
uses: appleboy/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|
@@ -352,7 +352,7 @@ Host FooServer | |
|
||
```diff | ||
- name: ssh proxy command | ||
uses: appleboy/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|
@@ -375,7 +375,7 @@ It is not uncommon for files to leak from backups or decommissioned hardware, an | |
|
||
```diff | ||
- name: ssh key passphrase | ||
uses: appleboy/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|
@@ -401,7 +401,7 @@ Now you can adjust you config: | |
|
||
```diff | ||
- name: ssh key passphrase | ||
uses: appleboy/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
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/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
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/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
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/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
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/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
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/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
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/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
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/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
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/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
+ env: | ||
+ FOO: ”BAR“ | ||
+ BAR: ”FOO“ | ||
|
@@ -272,7 +272,7 @@ _在 `env` 对象中,您需要将每个环境变量作为字符串传递,传 | |
|
||
```diff | ||
- name: stop script if command error | ||
uses: appleboy/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|
@@ -325,7 +325,7 @@ Host FooServer | |
|
||
```diff | ||
- name: ssh proxy command | ||
uses: appleboy/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|
@@ -346,7 +346,7 @@ Host FooServer | |
|
||
```diff | ||
- name: ssh key passphrase | ||
uses: appleboy/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
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/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|
@@ -390,4 +390,4 @@ ssh example.com ssh-keygen -l -f /etc/ssh/ssh_host_ed25519_key.pub | cut -d ’ | |
|
||
## 授权方式 | ||
|
||
本项目中的脚本和文档采用 [MIT](LICENSE) 许可证 发布。 | ||
本项目中的脚本和文档采用 [MIT](LICENSE) 许可证 发布。 |
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/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
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/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
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/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
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/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
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/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
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/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
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/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
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/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
+ env: | ||
+ FOO: "BAR" | ||
+ BAR: "FOO" | ||
|
@@ -272,7 +272,7 @@ _在 `env` 對象中,您需要將每個環境變量作為字符串傳遞,傳 | |
|
||
```diff | ||
- name: stop script if command error | ||
uses: appleboy/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|
@@ -325,7 +325,7 @@ Host FooServer | |
|
||
```diff | ||
- name: ssh proxy command | ||
uses: appleboy/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|
@@ -346,7 +346,7 @@ Host FooServer | |
|
||
```diff | ||
- name: ssh key passphrase | ||
uses: appleboy/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
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/ssh-action@v1.0.3 | ||
uses: appleboy/ssh-action@v1.1.0 | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USERNAME }} | ||
|