Skip to content

Commit

Permalink
feat(ci): 添加更新主题包并部署到 Cloudflare Pages的工作流
Browse files Browse the repository at this point in the history
  • Loading branch information
Leetfs committed Sep 21, 2024
1 parent f673412 commit e43c14b
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/update-and-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: 更新主题包并部署到 Cloudflare Pages

on:
workflow_dispatch:
inputs:
theme_version:
description: '指定的主题包版本'
required: false
default: 'prerelease'

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: 检出代码
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: 安装 pnpm
uses: pnpm/action-setup@v3
with:
version: latest

- name: 安装依赖
run: pnpm install

- name: 更新主题包
run: pnpm update @project-trans/vitepress-theme-project-trans@${{ github.event.inputs.theme_version }}

- name: 构建项目
run: pnpm build # 构建 VitePress 项目

- name: 安装 Wrangler
run: pnpm add -g wrangler@3 # 安装 Wrangler v3

- name: 发布到 Cloudflare Pages
uses: cloudflare/pages-action@v1
with:
apiToken: ${{ secrets.CLOUDFLARE_PAGES_TOKEN }} # Cloudflare Pages API Token
accountId: ${{ secrets.CLOUDFLARE_PAGES_ACCOUNT }} # Cloudflare 账户 ID
projectName: rle-wiki # Cloudflare Pages 项目名称
directory: docs/.vitepress/dist # 构建输出目录

0 comments on commit e43c14b

Please sign in to comment.