部署调整

This commit is contained in:
2025-12-04 11:32:18 +08:00
parent db0dcaefc1
commit b1ed3b27a7

View File

@@ -1,99 +1,99 @@
# name: Deploy Pages name: Deploy Pages
# # 触发条件push到main分支或者pull request到main分支 # 触发条件push到main分支或者pull request到main分支
# on: on:
# push: push:
# branches: [main] branches: [main]
# pull_request: pull_request:
# branches: [main] branches: [main]
# # 支持手动在工作流上触发 # 支持手动在工作流上触发
# workflow_dispatch: workflow_dispatch:
# # 设置时区 # 设置时区
# env: env:
# TZ: Asia/Shanghai TZ: Asia/Shanghai
# # 权限设置 # 权限设置
# permissions: permissions:
# # 允许读取仓库内容的权限。 # 允许读取仓库内容的权限。
# contents: read contents: read
# # 允许写入 GitHub Pages 的权限。 # 允许写入 GitHub Pages 的权限。
# pages: write pages: write
# # 允许写入 id-token 的权限。 # 允许写入 id-token 的权限。
# id-token: write id-token: write
# # 并发控制配置 # 并发控制配置
# concurrency: concurrency:
# group: pages group: pages
# cancel-in-progress: false cancel-in-progress: false
# # 定义执行任务 # 定义执行任务
# jobs: jobs:
# # 构建任务 # 构建任务
# build: build:
# runs-on: ubuntu-latest runs-on: ubuntu-latest
# # node v20 运行 # node v20 运行
# strategy: strategy:
# matrix: matrix:
# node-version: [20] node-version: [20]
# steps: steps:
# # 拉取代码 # 拉取代码
# - name: Checkout - name: Checkout
# uses: actions/checkout@v4 uses: actions/checkout@v4
# with: with:
# # 保留 Git 信息 # 保留 Git 信息
# fetch-depth: 0 fetch-depth: 0
# # 设置使用 Node.js 版本 # 设置使用 Node.js 版本
# - name: Use Node.js ${{ matrix.node-version }} - name: Use Node.js ${{ matrix.node-version }}
# uses: actions/setup-node@v4 uses: actions/setup-node@v4
# with: with:
# node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
# # 使用 最新的 PNPM # 使用 最新的 PNPM
# # 你也可以指定为具体的版本 # 你也可以指定为具体的版本
# - uses: pnpm/action-setup@v4 - uses: pnpm/action-setup@v4
# name: Install pnpm name: Install pnpm
# with: with:
# version: latest version: latest
# # version: 9 # version: 9
# run_install: false run_install: false
# # 安装依赖 # 安装依赖
# - name: Install dependencies - name: Install dependencies
# run: pnpm install --no-frozen-lockfile run: pnpm install --no-frozen-lockfile
# # 锁定依赖版本 # 锁定依赖版本
# # run: pnpm install --frozen-lockfile # run: pnpm install --frozen-lockfile
# # 构建项目 # 构建项目
# - name: Build blog project - name: Build blog project
# run: | run: |
# echo ${{ github.workspace }} echo ${{ github.workspace }}
# pnpm build pnpm build
# # 资源拷贝 # 资源拷贝
# - name: Build with Jekyll - name: Build with Jekyll
# uses: actions/jekyll-build-pages@v1 uses: actions/jekyll-build-pages@v1
# with: with:
# source: ./docs/.vitepress/dist source: ./docs/.vitepress/dist
# destination: ./_site destination: ./_site
# # 上传 _site 的资源,用于后续部署 # 上传 _site 的资源,用于后续部署
# - name: Upload artifact - name: Upload artifact
# uses: actions/upload-pages-artifact@v3 uses: actions/upload-pages-artifact@v3
# # 部署任务 # 部署任务
# deploy: deploy:
# environment: environment:
# name: github-pages name: github-pages
# url: ${{ steps.deployment.outputs.page_url }} url: ${{ steps.deployment.outputs.page_url }}
# runs-on: ubuntu-latest runs-on: ubuntu-latest
# needs: build needs: build
# steps: steps:
# - name: Deploy to GitHub Pages - name: Deploy to GitHub Pages
# id: deployment id: deployment
# uses: actions/deploy-pages@v4 uses: actions/deploy-pages@v4