12345678910111213141516171819202122232425 |
- # 基于frp 远程 ssh 登录 github action 的 Runner 主机进行调试
- # ssh root@frp_server_addr -p 29002 root/root
- # kubectl get node 查看节点
- name: kind
- on:
- push:
- branches: [ master ]
- jobs:
- hello:
- runs-on: ubuntu-latest
- steps:
- - name: Creating kind cluster
- uses: helm/kind-action@v1.0.0-rc.1
- - uses: shaowenchen/debugger-action@v1
- name: debugger
- timeout-minutes: 30
- continue-on-error: true
- with:
- frp_server_addr: ${{ secrets.FRP_SERVER_ADDR }}
- frp_server_port: ${{ secrets.FRP_SERVER_PORT }}
- frp_token: ${{ secrets.FRP_TOKEN }}
- ssh_port: 29002
|