We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fb11fb commit 1d1b21cCopy full SHA for 1d1b21c
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM appleboy/drone-ssh:linux-amd64
+FROM appleboy/drone-ssh:1.6.3-linux-amd64
2
3
ADD entrypoint.sh /entrypoint.sh
4
RUN chmod +x /entrypoint.sh
README.md
@@ -164,6 +164,21 @@ Multiple Hosts
164
ls -al
165
```
166
167
+Multiple Hosts with differebt port
168
+
169
+```diff
170
+ - name: multiple host
171
+ uses: appleboy/ssh-action@master
172
+ with:
173
+- host: "foo.com"
174
++ host: "foo.com:1234,bar.com:5678"
175
+ username: ${{ secrets.USERNAME }}
176
+ key: ${{ secrets.KEY }}
177
+ script: |
178
+ whoami
179
+ ls -al
180
+```
181
182
Synchronous execution on multiple hosts
183
184
```diff
0 commit comments