-
Notifications
You must be signed in to change notification settings - Fork 370
148 lines (128 loc) · 4.1 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
name: Release
on:
workflow_dispatch:
inputs:
version:
type: choice
description: 'Release Version(next, beta, alpha, latest)'
required: true
default: 'next'
options:
- next
- beta
- alpha
- latest
branch:
description: 'Release Branch(confirm release branch)'
required: true
default: 'main'
issue_comment:
types: [created]
permissions:
id-token: write
jobs:
issue_commentd:
name: Release with commentd
if: github.event.issue.pull_request && contains(github.event.comment.body, '!canary')
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
fetch-depth: 1
ref: refs/pull/${{ github.event.issue.number }}/head
- name: Install Pnpm
run: corepack enable
- name: Setup Node.js 18
uses: actions/setup-node@v3
with:
node-version: "18"
cache: 'pnpm'
- name: Install npm v9
run: npm install -g npm@9
- name: Nx Cache
id: nx-cache
uses: actions/cache@v3
with:
path: .nx-cache
key: nx-${{ github.ref_name }}-${{ github.sha }}
restore-keys: |
nx-${{ github.ref_name }}-
nx-
- name: Install Dependencies && Build
run: pnpm install
- name: Release
uses: web-infra-dev/actions@v2
with:
version: "next"
type: "release"
branch: ""
tools: "modern"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
REPOSITORY: ${{ github.repository }}
PULL_REQUEST_NUMBER: ${{ github.event.issue.number }}
COMMENT: ${{ toJson(github.event.comment) }}
release:
name: Release
if: ${{ github.event_name == 'workflow_dispatch' }}
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
# This makes Actions fetch only one branch to release
fetch-depth: 1
- name: Install Pnpm
run: corepack enable
- name: Setup Node.js 18
uses: actions/setup-node@v3
with:
node-version: "18"
cache: 'pnpm'
- name: Install npm v9
run: npm install -g npm@9
- name: Nx Cache
id: nx-cache
uses: actions/cache@v3
with:
path: .nx-cache
key: nx-${{ github.ref_name }}-${{ github.sha }}
restore-keys: |
nx-${{ github.ref_name }}-
nx-
- name: Install Dependencies && Build
run: pnpm install
- name: Update Rsbuild Nightly Version
run: pnpm run update-rsbuild
- name: Install Dependencies && Build
run: pnpm install --no-frozen-lockfile
- name: Release
uses: web-infra-dev/actions@v2
with:
version: ${{ github.event.inputs.version }}
branch: ${{ github.event.inputs.branch }}
type: 'release'
tools: 'modern'
env:
GITHUB_TOKEN: ${{ secrets.REPO_SCOPED_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
REPOSITORY: ${{ github.repository }}
REF: ${{ github.ref }}
- name: Trigger Rspress Release Pull Request
if: ${{github.event.inputs.version == 'latest'}}
run: |
curl -X POST \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer ${{ secrets.REPO_SCOPED_TOKEN }}' \
-d '{"ref": "main", "inputs": {"version": "latest"}}' \
https://api.github.com/repos/web-infra-dev/rspress/actions/workflows/release-pull-request-with-modernjs.yml/dispatches
- name: Trigger Rsbuild Update Modern
if: ${{github.event.inputs.version == 'latest'}}
run: |
curl -X POST \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer ${{ secrets.REPO_SCOPED_TOKEN }}' \
-d '{"ref": "main"}' \
https://api.github.com/repos/web-infra-dev/rsbuild/actions/workflows/update-modern.yml/dispatches