mirror of
https://gitea.com/actions/appleboy-ssh-action.git
synced 2024-11-22 10:09:37 +01:00
2988f59e6a
Signed-off-by: appleboy <appleboy.tw@gmail.com>
26 lines
527 B
YAML
26 lines
527 B
YAML
name: testing master
|
|
on: [push]
|
|
|
|
env:
|
|
FOO: "BAR"
|
|
BAR: "FOO"
|
|
|
|
jobs:
|
|
testing01:
|
|
name: testing new bash flow
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v1
|
|
|
|
- name: try bash script
|
|
uses: appleboy/ssh-action@master
|
|
with:
|
|
host: 2402:1f00:8000:800::2628
|
|
username: ubuntu
|
|
password: ${{ secrets.OVH_PASSWORD }}
|
|
protocol: tcp6
|
|
port: 22
|
|
command_timeout: 30s
|
|
script: |
|
|
whoami
|