chore: executing remote ssh commands using ssh key

This commit is contained in:
Bo-Yi Wu 2019-09-29 10:52:20 +08:00
parent b87ddeff00
commit 917a1df2a4
1 changed files with 10 additions and 2 deletions

View File

@ -6,8 +6,7 @@ jobs:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: executing remote ssh commands
- name: executing remote ssh commands using password
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST }}
@ -15,3 +14,12 @@ jobs:
password: ${{ secrets.PASSWORD }}
port: ${{ secrets.PORT }}
script: whoami
- name: executing remote ssh commands using ssh key
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.KEY }}
port: ${{ secrets.PORT }}
script: whoami