1
1
Fork 0
mirror of https://github.com/appleboy/ssh-action.git synced 2025-03-28 14:46:19 +01:00

chore: improve ci workflow

This allows the action to test the current changes instead of the hardcoded `@master` revision.
This commit is contained in:
Paulo Henrique Cuchi 2020-02-12 17:19:26 -03:00 committed by GitHub
parent fcfb760891
commit 821296de1d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
name: remote ssh command
on: [push]
on: [push, pull_request]
jobs:
build:
@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: executing remote ssh commands using password
uses: appleboy/ssh-action@master
uses: ./
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
@ -16,7 +16,7 @@ jobs:
script: whoami
- name: executing remote ssh commands using ssh key
uses: appleboy/ssh-action@master
uses: ./
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
@ -25,7 +25,7 @@ jobs:
script: whoami
- name: multiple command
uses: appleboy/ssh-action@master
uses: ./
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
@ -36,7 +36,7 @@ jobs:
ls -al
# - name: stop script if command error
# uses: appleboy/ssh-action@master
# uses: ./
# with:
# host: ${{ secrets.HOST }}
# username: ${{ secrets.USERNAME }}
@ -48,7 +48,7 @@ jobs:
# ls -al
- name: pass environment
uses: appleboy/ssh-action@master
uses: ./
env:
FOO: "BAR"
with:
@ -62,7 +62,7 @@ jobs:
echo "I am $BAR, thanks"
- name: pass multiple environment
uses: appleboy/ssh-action@master
uses: ./
env:
FOO: "BAR"
BAR: "FOO"
@ -79,7 +79,7 @@ jobs:
echo "sha: $SHA"
- name: ssh key passphrase
uses: appleboy/ssh-action@master
uses: ./
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}