88# - v8 prereleases (from a workflow_dispatch trigger on the v8 branch)
99# - Experimental releases (from a workflow_dispatch trigger)
1010
11- name : 🚢 Release/Publish
11+ name : Release
1212
1313on :
1414 push :
@@ -109,19 +109,19 @@ jobs:
109109 contents : write # enable pushing changes to the origin
110110 id-token : write # enable generation of an ID token for publishing
111111 steps :
112- - name : ⬇️ Checkout repo
112+ - name : Checkout repo
113113 uses : actions/checkout@v6
114114
115- - name : 📦 Setup pnpm
115+ - name : Setup pnpm
116116 uses : pnpm/action-setup@v6
117117
118- - name : ⎔ Setup node
118+ - name : Setup node
119119 uses : actions/setup-node@v6
120120 with :
121121 node-version-file : " .nvmrc"
122122 package-manager-cache : false
123123
124- - name : 📥 Install deps
124+ - name : Install deps
125125 run : pnpm install --frozen-lockfile
126126
127127 - name : Build packages
@@ -133,31 +133,31 @@ jobs:
133133 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
134134
135135 comment :
136- name : 📝 Comment on released issues/pull requests
136+ name : Comment on released issues/pull requests
137137 needs : publish
138138 runs-on : ubuntu-latest
139139 permissions :
140140 issues : write # enable commenting on released issues
141141 pull-requests : write # enable commenting on released pull requests
142142 steps :
143- - name : ⬇️ Checkout repo
143+ - name : Checkout repo
144144 uses : actions/checkout@v6
145145 with :
146146 fetch-depth : 0
147147
148- - name : 📦 Setup pnpm
148+ - name : Setup pnpm
149149 uses : pnpm/action-setup@v6
150150
151- - name : ⎔ Setup node
151+ - name : Setup node
152152 uses : actions/setup-node@v6
153153 with :
154154 node-version-file : " .nvmrc"
155155 package-manager-cache : false
156156
157- - name : 📥 Install deps
157+ - name : Install deps
158158 run : pnpm install --frozen-lockfile
159159
160- - name : 📝 Comment on released issues and pull requests
160+ - name : Comment on released issues and pull requests
161161 env :
162162 GH_TOKEN : ${{ github.token }}
163163 run : pnpm run release-comments
@@ -170,67 +170,67 @@ jobs:
170170 contents : read
171171 id-token : write # enable generation of an ID token for publishing
172172 steps :
173- - name : ⬇️ Checkout repo
173+ - name : Checkout repo
174174 uses : actions/checkout@v6
175175 with :
176176 ref : ${{ github.event.inputs.branch }}
177177 fetch-depth : 0 # needed for tags
178178
179- - name : 📦 Setup pnpm
179+ - name : Setup pnpm
180180 uses : pnpm/action-setup@v6
181181
182- - name : ⎔ Setup node
182+ - name : Setup node
183183 uses : actions/setup-node@v6
184184 with :
185185 node-version-file : " .nvmrc"
186186 package-manager-cache : false
187187
188- - name : 📥 Install deps
188+ - name : Install deps
189189 run : pnpm install --frozen-lockfile
190190
191- - name : 🏗 Build
191+ - name : Build
192192 run : pnpm build
193193
194- - name : 🚀 Publish prerelease
194+ - name : Publish prerelease
195195 run : pnpm prerelease:publish
196196
197197 experimental-release :
198- name : 🧪 Experimental Release
198+ name : Experimental Release
199199 if : github.repository == 'remix-run/react-router' && github.event_name == 'workflow_dispatch' && github.event.inputs.branch != 'v8'
200200 runs-on : ubuntu-latest
201201 permissions :
202202 contents : write # enable pushing changes to the origin
203203 id-token : write # enable generation of an ID token for publishing
204204 steps :
205- - name : ⬇️ Checkout repo
205+ - name : Checkout repo
206206 uses : actions/checkout@v6
207207 with :
208208 ref : ${{ github.event.inputs.branch }}
209209 # checkout using a custom token so that we can push later on
210210 token : ${{ secrets.GITHUB_TOKEN }}
211211 fetch-depth : 0
212212
213- - name : 📦 Setup pnpm
213+ - name : Setup pnpm
214214 uses : pnpm/action-setup@v6
215215
216- - name : ⎔ Setup node
216+ - name : Setup node
217217 uses : actions/setup-node@v6
218218 with :
219219 node-version-file : " .nvmrc"
220220 package-manager-cache : false
221221
222- - name : 📥 Install deps
222+ - name : Install deps
223223 run : pnpm install --frozen-lockfile
224224
225- - name : ⤴️ Update version
225+ - name : Update version
226226 run : |
227227 git config --local user.email "hello@remix.run"
228228 git config --local user.name "Remix Run Bot"
229229 pnpm run experimental:version
230230 git push origin --tags
231231
232- - name : 🏗 Build
232+ - name : Build
233233 run : pnpm build
234234
235- - name : 🚀 Publish
235+ - name : Publish
236236 run : pnpm run experimental:publish
0 commit comments