mirror of
https://github.com/appleboy/ssh-action.git
synced 2026-01-19 16:18:56 +08:00
8 lines
251 B
YAML
8 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
|