You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+12-7
Original file line number
Diff line number
Diff line change
@@ -186,30 +186,35 @@ jobs:
186
186
<details><summary>:book: Release guide</summary>
187
187
<p>
188
188
189
-
- Dependabot PR's:
190
-
- We expect Dependabot PRs to be passing CI and have any changes to the `dist/` folder built for production dependencies
191
-
- Some development dependencies may fail the `dist/` check if they modify the Typescript compilation, these should be updated manually via `npm run build`. See the [`dependabot-build`](https://github.com/dependabot/fetch-metadata/blob/main/.github/workflows/dependabot-build.yml) action for details.
192
-
- Checkout and update `main`, then use the `bin/bump-version` script to create a release PR
189
+
## Dependabot PR's
190
+
191
+
- We expect Dependabot PRs to be passing CI and have any changes to the `dist/` folder built for production dependencies
192
+
- Some development dependencies may fail the `dist/` check if they modify the Typescript compilation, these should be updated manually via `npm run build`. See the [`dependabot-build`](https://github.com/dependabot/fetch-metadata/blob/main/.github/workflows/dependabot-build.yml) action for details.
193
+
194
+
## Tagging a new release
195
+
196
+
1. Checkout and update `main`, then use the `bin/bump-version` script to create a release PR
193
197
```bash
194
198
git checkout main
195
199
git pull
196
200
bin/bump-version minor # major | minor | patch
197
201
```
198
-
-Merge the PR after getting it reviewed
199
-
-Create a new release tagged as `v1.X.X` format:
202
+
2. Merge the PR after getting it reviewed
203
+
3. Create a new release tagged as `v1.X.X` format:
200
204
- Either via the web UI: https://github.com/dependabot/fetch-metadata/releases/new
0 commit comments