mirror of
https://gitea.com/actions/appleboy-ssh-action.git
synced 2024-11-26 20:19:36 +01:00
18 lines
403 B
YAML
18 lines
403 B
YAML
|
name: ssh command
|
||
|
on: [push]
|
||
|
jobs:
|
||
|
|
||
|
build:
|
||
|
name: Build
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@master
|
||
|
- name: executing remote ssh commands
|
||
|
uses: appleboy/scp-action@master
|
||
|
with:
|
||
|
host: ${{ secrets.HOST }}
|
||
|
username: ${{ secrets.USERNAME }}
|
||
|
password: ${{ secrets.PASSWORD }}
|
||
|
port: ${{ secrets.PORT }}
|
||
|
script: whoami
|