Create a GitHub Release
masterRun the release command in your project directory to generate a release. You can specify a SemVer release type or create a pre-release.
Standard Release Types:
major: Incompatible API changes.minor: Backwards-compatible functionality additions.patch: Backwards-compatible bug fixes.
If no type is provided, a release will be created from the most recent commit and tag.
Pre-releases:
- Use
release preto create a pre-release (e.g.,3.0.0-canary.1). - Use
release pre <suffix>to specify a custom suffix (e.g.,release pre betaresults in3.0.0-beta.1).