mirror of
https://github.com/appleboy/ssh-action.git
synced 2025-08-15 21:25:14 +00:00
9 lines
251 B
YAML
9 lines
251 B
YAML
- name: executing remote ssh commands using password
|
|
uses: appleboy/ssh-action@v1.2.0
|
|
with:
|
|
host: ${{ secrets.HOST }}
|
|
username: ${{ secrets.USERNAME }}
|
|
password: ${{ secrets.PASSWORD }}
|
|
port: ${{ secrets.PORT }}
|
|
script: whoami
|