23 lines
473 B
YAML
23 lines
473 B
YAML
name: SSH 连接测试
|
|
|
|
on:
|
|
workflow_dispatch: # 手动触发
|
|
push:
|
|
branches:
|
|
- main # 仅main分支触发
|
|
|
|
jobs:
|
|
ssh-test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: SSH 连接测试
|
|
uses: appleboy/ssh-action@master
|
|
with:
|
|
host: 120.27.198.238
|
|
username: root
|
|
password: Havocantelope420#
|
|
port: '22'
|
|
script: |
|
|
echo "Running command on remote server"
|
|
ls -lha
|