mirror of
https://github.com/appleboy/ssh-action.git
synced 2024-11-23 22:56:11 +08: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
|