-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
31 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,42 @@ | ||
name: 部署文档 | ||
name: 部署到 Cloudflare Pages | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
- 'main' # 当推送到 main 分支时触发 | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-22.04 | ||
deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- uses: pnpm/action-setup@v3 | ||
# 第一步:检出代码 | ||
- name: 检出代码 | ||
uses: actions/checkout@v3 | ||
|
||
# 第二步:安装 pnpm | ||
- name: 安装 pnpm | ||
uses: pnpm/action-setup@v3 | ||
with: | ||
version: latest | ||
- uses: actions/setup-node@v4 | ||
with: | ||
cache: pnpm | ||
- name: Install | ||
|
||
# 第三步:安装依赖 | ||
- name: 安装依赖 | ||
run: pnpm install | ||
- name: Build | ||
run: pnpm build | ||
env: | ||
NODE_OPTIONS: --max_old_space_size=4096 | ||
- name: Publish to Cloudflare Pages | ||
|
||
# 第四步:构建项目 | ||
- name: 构建项目 | ||
run: pnpm build # 构建 VitePress 项目 | ||
|
||
# 第五步:安装 Wrangler | ||
- name: 安装 Wrangler | ||
run: pnpm add -g wrangler@3 # 安装 Wrangler v3 | ||
|
||
# 第六步:发布到 Cloudflare Pages | ||
- name: 发布到 Cloudflare Pages | ||
uses: cloudflare/pages-action@v1 | ||
with: | ||
apiToken: ${{ secrets.CLOUDFLARE_PAGES_TOKEN }} | ||
accountId: ${{ secrets.CLOUDFLARE_PAGES_ACCOUNT }} | ||
projectName: rle-wiki | ||
directory: docs/.vitepress/dist | ||
wranglerVersion: '3' | ||
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 # 构建输出目录 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.