60
60
runs-on : ubuntu-latest
61
61
steps :
62
62
- name : executing remote ssh commands using password
63
- uses : appleboy/ssh-action@v0.1.8
63
+ uses : appleboy/ssh-action@v0.1.9
64
64
with :
65
65
host : ${{ secrets.HOST }}
66
66
username : ${{ secrets.USERNAME }}
@@ -161,7 +161,7 @@ ssh-keygen -t ed25519 -a 200 -C "your_email@example.com"
161
161
162
162
``` yaml
163
163
- name : executing remote ssh commands using password
164
- uses : appleboy/ssh-action@v0.1.8
164
+ uses : appleboy/ssh-action@v0.1.9
165
165
with :
166
166
host : ${{ secrets.HOST }}
167
167
username : ${{ secrets.USERNAME }}
@@ -174,7 +174,7 @@ ssh-keygen -t ed25519 -a 200 -C "your_email@example.com"
174
174
175
175
` ` ` yaml
176
176
- name : executing remote ssh commands using ssh key
177
- uses : appleboy/ssh-action@v0.1.8
177
+ uses : appleboy/ssh-action@v0.1.9
178
178
with :
179
179
host : ${{ secrets.HOST }}
180
180
username : ${{ secrets.USERNAME }}
@@ -187,7 +187,7 @@ ssh-keygen -t ed25519 -a 200 -C "your_email@example.com"
187
187
188
188
` ` ` yaml
189
189
- name : multiple command
190
- uses : appleboy/ssh-action@v0.1.8
190
+ uses : appleboy/ssh-action@v0.1.9
191
191
with :
192
192
host : ${{ secrets.HOST }}
193
193
username : ${{ secrets.USERNAME }}
@@ -204,7 +204,7 @@ ssh-keygen -t ed25519 -a 200 -C "your_email@example.com"
204
204
205
205
` ` ` diff
206
206
- name : multiple host
207
- uses : appleboy/ssh-action@v0.1.8
207
+ uses : appleboy/ssh-action@v0.1.9
208
208
with :
209
209
- host : " foo.com"
210
210
+ host : " foo.com,bar.com"
@@ -220,7 +220,7 @@ ssh-keygen -t ed25519 -a 200 -C "your_email@example.com"
220
220
221
221
` ` ` diff
222
222
- name : multiple host
223
- uses : appleboy/ssh-action@v0.1.8
223
+ uses : appleboy/ssh-action@v0.1.9
224
224
with :
225
225
- host : " foo.com"
226
226
+ host : " foo.com:1234,bar.com:5678"
@@ -235,7 +235,7 @@ ssh-keygen -t ed25519 -a 200 -C "your_email@example.com"
235
235
236
236
` ` ` diff
237
237
- name : multiple host
238
- uses : appleboy/ssh-action@v0.1.8
238
+ uses : appleboy/ssh-action@v0.1.9
239
239
with :
240
240
host : " foo.com,bar.com"
241
241
+ sync : true
@@ -251,7 +251,7 @@ ssh-keygen -t ed25519 -a 200 -C "your_email@example.com"
251
251
252
252
` ` ` diff
253
253
- name : pass environment
254
- uses : appleboy/ssh-action@v0.1.8
254
+ uses : appleboy/ssh-action@v0.1.9
255
255
+ env :
256
256
+ FOO : " BAR"
257
257
+ BAR : " FOO"
@@ -276,7 +276,7 @@ _Inside `env` object, you need to pass every environment variable as a string, p
276
276
277
277
` ` ` diff
278
278
- name: stop script if command error
279
- uses: appleboy/ssh-action@v0.1.8
279
+ uses: appleboy/ssh-action@v0.1.9
280
280
with:
281
281
host: ${{ secrets.HOST }}
282
282
username: ${{ secrets.USERNAME }}
@@ -329,7 +329,7 @@ Host FooServer
329
329
330
330
` ` ` diff
331
331
- name: ssh proxy command
332
- uses: appleboy/ssh-action@v0.1.8
332
+ uses: appleboy/ssh-action@v0.1.9
333
333
with:
334
334
host: ${{ secrets.HOST }}
335
335
username: ${{ secrets.USERNAME }}
@@ -352,7 +352,7 @@ It is not uncommon for files to leak from backups or decommissioned hardware, an
352
352
353
353
` ` ` diff
354
354
- name: ssh key passphrase
355
- uses: appleboy/ssh-action@v0.1.8
355
+ uses: appleboy/ssh-action@v0.1.9
356
356
with:
357
357
host: ${{ secrets.HOST }}
358
358
username: ${{ secrets.USERNAME }}
@@ -378,7 +378,7 @@ Now you can adjust you config:
378
378
379
379
` ` ` diff
380
380
- name: ssh key passphrase
381
- uses: appleboy/ssh-action@v0.1.8
381
+ uses: appleboy/ssh-action@v0.1.9
382
382
with:
383
383
host: ${{ secrets.HOST }}
384
384
username: ${{ secrets.USERNAME }}
0 commit comments