From c3211a70d8caa4469a22e0b04ff273f82f8bf7de Mon Sep 17 00:00:00 2001 From: Cxx0822 <1556464090@qq.com> Date: Wed, 26 Nov 2025 15:24:25 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E5=88=A0=E9=99=A4runner?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/deploy.yml | 54 ------------------------------------- 1 file changed, 54 deletions(-) delete mode 100644 .gitea/workflows/deploy.yml diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml deleted file mode 100644 index 4a0126f..0000000 --- a/.gitea/workflows/deploy.yml +++ /dev/null @@ -1,54 +0,0 @@ -name: Deploy Vitepress to Gitea Pages - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -permissions: - contents: read - pages: write - id-token: write - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - - name: Setup Node.js - uses: actions/setup-node@v3 - with: - node-version: 18 - cache: 'npm' - - - name: Install dependencies - run: npm ci - - - name: Build Vitepress site - run: npm run docs:build - - - name: Setup Pages - uses: actions/configure-pages@v2 - - - name: Upload artifact - uses: actions/upload-pages-artifact@v1 - with: - path: docs/.vitepress/dist - - deploy: - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - needs: build - if: github.ref == 'refs/heads/master' - - steps: - - name: Deploy to Gitea Pages - id: deployment - uses: actions/deploy-pages@v1 \ No newline at end of file