-
-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add new release process based on release-please (#849)
Adds a new release process based on [release-please](https://github.com/googleapis/release-please). As soon as this gets merged, releases will work as follows: 1. PR merges will be collected by release-please into a release PR. The team at Supabase decides when a release is ready to go out, usually weekly or bi-weekly. 2. Every PR merge (that uses `feat:` or `fix:` titles) will result in a release candidate release with tag `rc<version>`. Example: if the new release will be `2.140.0` then the RC release will be `rc2.140-rc.1`, and so on. 3. Once the release PR is merged, an official release will be published with the tag `v<version>`, or per the example `v2.140.0`. 4. Releases with a patch version of `0` get a special branch `release/v2.140.0` which can be used to patch that and only that major+minor version, using the same process as above. 5. RC releases are tagged `rc` in NPM and regular ones as `latest`. Patched releases get the label `patched`. Similar to: - supabase/auth#1391
- Loading branch information
Showing
2 changed files
with
128 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
// Generated by genversion. | ||
// Will be overwriten by .github/workflows/release.yml | ||
export const version = '0.0.0' |