chore: 移除发布工作流及Dockerfile,
Some checks failed
Remote SSH Command / Build (push) Has been cancelled

This commit is contained in:
yinxiaolong
2026-06-18 19:00:07 +08:00
parent 9d18f41705
commit bb1958e361

View File

@@ -1,16 +1,15 @@
name: Build Docker name: Remote SSH Command
on: [push]
on: [push, pull_request]
jobs: jobs:
build: build:
name: Build
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Set git proxy - name: 执行远程 SSH 命令(密码认证)
run: | uses: appleboy/ssh-action@v1
git config --global http.proxy http://10.255.0.1:7890 with:
git config --global https.proxy http://10.255.0.1:7890 host: ${{ secrets.HOST }}
- name: Checkout code username: ${{ secrets.USERNAME }}
uses: actions/checkout@v4 password: ${{ secrets.PASSWORD }}
- name: Build port: ${{ secrets.PORT }}
run: ls -la script: whoami