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
- Using our [Release GitHub Action](https://github.com/mongodb/openapi/actions/workflows/release-cli.yml) run a new workflow using `master` and the following inputs:
7
+
- Version number: `vX.Y.Z`
8
+
- Skip tests: Should be left empty. Only used in case failing tests have been encountered and the team agrees the release can still de done.
9
+
- Using an existing tag: Should be left empty (default `false` creates a new tag from `master`). This should be set to `true` only if you want to re-use an existing tag for the release. This can be helpful for rerunning a failed release process in which the tag has already been created.
10
+
11
+
- Using [GitHub CLI](https://cli.github.com/), run the command
12
+
```bash
13
+
cd tools/cli
14
+
# Make sure to update version_number with the release version
15
+
gh workflow run release-cli.yml -f version_number=vX.Y.Z -f skip_tests=false -f use_existing_tag=false
0 commit comments