Skip to content

Commit 82f9926

Browse files
authored
ci(all): 👷 update (#513)
1 parent 6f775cd commit 82f9926

File tree

3 files changed

+47
-30
lines changed

3 files changed

+47
-30
lines changed

.github/workflows/deploy-docs.yml

+18-13
Original file line numberDiff line numberDiff line change
@@ -14,40 +14,45 @@ on:
1414
jobs:
1515
deploy:
1616
runs-on: ubuntu-latest
17-
17+
permissions:
18+
contents: read
19+
deployments: write
1820
steps:
1921
# 第一步:检出代码
2022
- name: 检出代码
21-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2224
with:
2325
fetch-depth: 0
2426

2527
# 第二步:安装 pnpm
2628
- name: 安装 pnpm
27-
uses: pnpm/action-setup@v3
29+
uses: pnpm/action-setup@v4
30+
31+
# 第三步:安装 node 并配置缓存
32+
- name: 设置 Node.js 环境
33+
uses: actions/setup-node@v4
2834
with:
29-
version: latest
35+
node-version: 'latest'
36+
registry-url: 'https://registry.npmjs.org/'
37+
cache: 'pnpm'
3038

31-
# 第三步:安装依赖
39+
# 第四步:安装依赖
3240
- name: 安装依赖
3341
run: pnpm install
3442

3543
- name: 更新主题包
3644
run: pnpm update @project-trans/vitepress-theme-project-trans@prerelease
3745

38-
# 第四步:构建项目
46+
# 第五步:构建项目
3947
- name: 构建项目
4048
run: pnpm build # 构建 VitePress 项目
4149

42-
# 第五步:安装 Wrangler
43-
- name: 安装 Wrangler
44-
run: pnpm add -g wrangler@3 # 安装 Wrangler v3
45-
4650
# 第六步:发布到 Cloudflare Pages
4751
- name: 发布到 Cloudflare Pages
48-
uses: cloudflare/pages-action@v1
52+
uses: cloudflare/wrangler-action@v3
4953
with:
5054
apiToken: ${{ secrets.CLOUDFLARE_PAGES_TOKEN }} # Cloudflare Pages API Token
5155
accountId: ${{ secrets.CLOUDFLARE_PAGES_ACCOUNT }} # Cloudflare 账户 ID
52-
projectName: rle-wiki # Cloudflare Pages 项目名称
53-
directory: docs/.vitepress/dist # 构建输出目录
56+
command: pages deploy docs/.vitepress/dist --project-name=rle-wiki
57+
# Optional: Enable this if you want to have GitHub Deployments triggered
58+
gitHubToken: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/preview-pr-build.yaml

+14-8
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ on:
44
pull_request_target:
55
types: [opened, synchronize, reopened, ready_for_review]
66
paths:
7-
- 'docs/**'
8-
- 'package.json'
9-
- 'packages/**'
7+
- "docs/**"
8+
- "package.json"
9+
- "packages/**"
1010

1111
jobs:
1212
deploy:
@@ -29,20 +29,26 @@ jobs:
2929
- name: 安装 pnpm
3030
uses: pnpm/action-setup@v4
3131

32-
# 第四步:安装依赖
32+
# 第四步:安装 node 并配置缓存
33+
- name: 设置 Node.js 环境
34+
uses: actions/setup-node@v4
35+
with:
36+
node-version: "latest"
37+
registry-url: "https://registry.npmjs.org/"
38+
cache: "pnpm"
39+
40+
# 第五步:安装依赖
3341
- name: 安装依赖
3442
run: pnpm install
3543

3644
- name: 更新主题包
3745
run: pnpm update @project-trans/vitepress-theme-project-trans@prerelease
3846

39-
# 第五步:构建项目
47+
# 第六步:构建项目
4048
- name: 构建项目
4149
run: pnpm build # 构建 VitePress 项目
4250

43-
- name: 安装 Wrangler
44-
run: npm install -g wrangler@^3.90.0
45-
51+
# 第六步:发布到 Cloudflare Pages
4652
- name: Deploy to Cloudflare Pages
4753
id: deploy
4854
uses: cloudflare/wrangler-action@v3

.github/workflows/update-and-build.yml

+15-9
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,25 @@ on:
1111
jobs:
1212
deploy:
1313
runs-on: ubuntu-latest
14+
permissions:
15+
contents: read
16+
deployments: write
1417

1518
steps:
1619
- name: 检出代码
17-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
1821
with:
1922
fetch-depth: 0
2023

2124
- name: 安装 pnpm
22-
uses: pnpm/action-setup@v3
25+
uses: pnpm/action-setup@v4
26+
27+
- name: 设置 Node.js 环境
28+
uses: actions/setup-node@v4
2329
with:
24-
version: latest
30+
node-version: 'latest'
31+
registry-url: 'https://registry.npmjs.org/'
32+
cache: 'pnpm'
2533

2634
- name: 安装依赖
2735
run: pnpm install
@@ -32,13 +40,11 @@ jobs:
3240
- name: 构建项目
3341
run: pnpm build # 构建 VitePress 项目
3442

35-
- name: 安装 Wrangler
36-
run: pnpm add -g wrangler@3 # 安装 Wrangler v3
37-
3843
- name: 发布到 Cloudflare Pages
39-
uses: cloudflare/pages-action@v1
44+
uses: cloudflare/wrangler-action@v3
4045
with:
4146
apiToken: ${{ secrets.CLOUDFLARE_PAGES_TOKEN }} # Cloudflare Pages API Token
4247
accountId: ${{ secrets.CLOUDFLARE_PAGES_ACCOUNT }} # Cloudflare 账户 ID
43-
projectName: rle-wiki # Cloudflare Pages 项目名称
44-
directory: docs/.vitepress/dist # 构建输出目录
48+
command: pages deploy docs/.vitepress/dist --project-name=rle-wiki
49+
# Optional: Enable this if you want to have GitHub Deployments triggered
50+
gitHubToken: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)