aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-07-09 21:49:17 +0800
committer魏曹先生 <1992414357@qq.com>2026-07-09 21:49:17 +0800
commit0499ad46f0e94a78498a11b50d1179a83a21fc66 (patch)
treeaed8279155b81d7f130225f3fbfe095ff21f00fa
parent073feb2bb4d98f80a2da33ec2310c57d3f6261ac (diff)
ci: remove GitHub Pages deployment workflow
-rw-r--r--.github/workflows/page.yml35
1 files changed, 0 insertions, 35 deletions
diff --git a/.github/workflows/page.yml b/.github/workflows/page.yml
deleted file mode 100644
index 6366262..0000000
--- a/.github/workflows/page.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-name: Deploy static content to Pages
-
-on:
- push:
- branches: ["main"]
-
- workflow_dispatch:
-
-permissions:
- contents: read
- pages: write
- id-token: write
-
-concurrency:
- group: "pages"
- cancel-in-progress: false
-
-jobs:
- deploy:
- environment:
- name: github-pages
- url: ${{ steps.deployment.outputs.page_url }}
- runs-on: ubuntu-latest
- steps:
- - name: Checkout
- uses: actions/checkout@v4
- - name: Setup Pages
- uses: actions/configure-pages@v5
- - name: Upload artifact
- uses: actions/upload-pages-artifact@v3
- with:
- path: "."
- - name: Deploy to GitHub Pages
- id: deployment
- uses: actions/deploy-pages@v5