File tree 3 files changed +47
-30
lines changed
3 files changed +47
-30
lines changed Original file line number Diff line number Diff line change 14
14
jobs :
15
15
deploy :
16
16
runs-on : ubuntu-latest
17
-
17
+ permissions :
18
+ contents : read
19
+ deployments : write
18
20
steps :
19
21
# 第一步:检出代码
20
22
- name : 检出代码
21
- uses : actions/checkout@v3
23
+ uses : actions/checkout@v4
22
24
with :
23
25
fetch-depth : 0
24
26
25
27
# 第二步:安装 pnpm
26
28
- 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
28
34
with :
29
- version : latest
35
+ node-version : ' latest'
36
+ registry-url : ' https://registry.npmjs.org/'
37
+ cache : ' pnpm'
30
38
31
- # 第三步 :安装依赖
39
+ # 第四步 :安装依赖
32
40
- name : 安装依赖
33
41
run : pnpm install
34
42
35
43
- name : 更新主题包
36
44
run : pnpm update @project-trans/vitepress-theme-project-trans@prerelease
37
45
38
- # 第四步 :构建项目
46
+ # 第五步 :构建项目
39
47
- name : 构建项目
40
48
run : pnpm build # 构建 VitePress 项目
41
49
42
- # 第五步:安装 Wrangler
43
- - name : 安装 Wrangler
44
- run : pnpm add -g wrangler@3 # 安装 Wrangler v3
45
-
46
50
# 第六步:发布到 Cloudflare Pages
47
51
- name : 发布到 Cloudflare Pages
48
- uses : cloudflare/pages -action@v1
52
+ uses : cloudflare/wrangler -action@v3
49
53
with :
50
54
apiToken : ${{ secrets.CLOUDFLARE_PAGES_TOKEN }} # Cloudflare Pages API Token
51
55
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 }}
Original file line number Diff line number Diff line change 4
4
pull_request_target :
5
5
types : [opened, synchronize, reopened, ready_for_review]
6
6
paths :
7
- - ' docs/**'
8
- - ' package.json'
9
- - ' packages/**'
7
+ - " docs/**"
8
+ - " package.json"
9
+ - " packages/**"
10
10
11
11
jobs :
12
12
deploy :
@@ -29,20 +29,26 @@ jobs:
29
29
- name : 安装 pnpm
30
30
uses : pnpm/action-setup@v4
31
31
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
+ # 第五步:安装依赖
33
41
- name : 安装依赖
34
42
run : pnpm install
35
43
36
44
- name : 更新主题包
37
45
run : pnpm update @project-trans/vitepress-theme-project-trans@prerelease
38
46
39
- # 第五步 :构建项目
47
+ # 第六步 :构建项目
40
48
- name : 构建项目
41
49
run : pnpm build # 构建 VitePress 项目
42
50
43
- - name : 安装 Wrangler
44
- run : npm install -g wrangler@^3.90.0
45
-
51
+ # 第六步:发布到 Cloudflare Pages
46
52
- name : Deploy to Cloudflare Pages
47
53
id : deploy
48
54
uses : cloudflare/wrangler-action@v3
Original file line number Diff line number Diff line change 11
11
jobs :
12
12
deploy :
13
13
runs-on : ubuntu-latest
14
+ permissions :
15
+ contents : read
16
+ deployments : write
14
17
15
18
steps :
16
19
- name : 检出代码
17
- uses : actions/checkout@v3
20
+ uses : actions/checkout@v4
18
21
with :
19
22
fetch-depth : 0
20
23
21
24
- 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
23
29
with :
24
- version : latest
30
+ node-version : ' latest'
31
+ registry-url : ' https://registry.npmjs.org/'
32
+ cache : ' pnpm'
25
33
26
34
- name : 安装依赖
27
35
run : pnpm install
@@ -32,13 +40,11 @@ jobs:
32
40
- name : 构建项目
33
41
run : pnpm build # 构建 VitePress 项目
34
42
35
- - name : 安装 Wrangler
36
- run : pnpm add -g wrangler@3 # 安装 Wrangler v3
37
-
38
43
- name : 发布到 Cloudflare Pages
39
- uses : cloudflare/pages -action@v1
44
+ uses : cloudflare/wrangler -action@v3
40
45
with :
41
46
apiToken : ${{ secrets.CLOUDFLARE_PAGES_TOKEN }} # Cloudflare Pages API Token
42
47
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 }}
You can’t perform that action at this time.
0 commit comments