mirror of
https://github.com/appleboy/ssh-action.git
synced 2024-11-15 06:28:05 +00:00
63 lines
1.6 KiB
YAML
63 lines
1.6 KiB
YAML
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
|
|
|
|
- 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
|
|
|
|
- name: multiple command
|
|
uses: appleboy/ssh-action@master
|
|
with:
|
|
host: ${{ secrets.HOST }}
|
|
username: ${{ secrets.USERNAME }}
|
|
key: ${{ secrets.KEY }}
|
|
port: ${{ secrets.PORT }}
|
|
script: |
|
|
whoami
|
|
ls -al
|
|
|
|
# - name: stop script if command error
|
|
# uses: appleboy/ssh-action@master
|
|
# with:
|
|
# host: ${{ secrets.HOST }}
|
|
# username: ${{ secrets.USERNAME }}
|
|
# key: ${{ secrets.KEY }}
|
|
# port: ${{ secrets.PORT }}
|
|
# script_stop: true
|
|
# script: |
|
|
# mkdir abc/def
|
|
# ls -al
|
|
|
|
- name: pass environment
|
|
uses: appleboy/ssh-action@master
|
|
env:
|
|
FOO: "BAR"
|
|
with:
|
|
host: ${{ secrets.HOST }}
|
|
username: ${{ secrets.USERNAME }}
|
|
key: ${{ secrets.KEY }}
|
|
port: ${{ secrets.PORT }}
|
|
envs: FOO
|
|
script: |
|
|
echo "I am $FOO, thanks"
|
|
echo "I am $BAR, thanks"
|