|
|
|
@ -11,14 +11,22 @@
|
|
|
|
|
Executing remote ssh commands.
|
|
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
|
- name: executing remote ssh commands using password
|
|
|
|
|
uses: appleboy/ssh-action@master
|
|
|
|
|
with:
|
|
|
|
|
host: ${{ secrets.HOST }}
|
|
|
|
|
username: ${{ secrets.USERNAME }}
|
|
|
|
|
password: ${{ secrets.PASSWORD }}
|
|
|
|
|
port: ${{ secrets.PORT }}
|
|
|
|
|
script: whoami
|
|
|
|
|
name: remote ssh command
|
|
|
|
|
on: [push]
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
|
|
build:
|
|
|
|
|
name: Build
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
steps:
|
|
|
|
|
- name: executing remote ssh commands using password
|
|
|
|
|
uses: appleboy/ssh-action@master
|
|
|
|
|
with:
|
|
|
|
|
host: ${{ secrets.HOST }}
|
|
|
|
|
username: ${{ secrets.USERNAME }}
|
|
|
|
|
password: ${{ secrets.PASSWORD }}
|
|
|
|
|
port: ${{ secrets.PORT }}
|
|
|
|
|
script: whoami
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
output:
|
|
|
|
|