Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrsauravsahu/blog-semver-monorepo-gitlabci
checkout the gitlab mirror for CI
https://github.com/mrsauravsahu/blog-semver-monorepo-gitlabci
Last synced: about 1 month ago
JSON representation
checkout the gitlab mirror for CI
- Host: GitHub
- URL: https://github.com/mrsauravsahu/blog-semver-monorepo-gitlabci
- Owner: mrsauravsahu
- Created: 2022-07-25T13:42:04.000Z (over 2 years ago)
- Default Branch: develop
- Last Pushed: 2022-08-31T10:43:30.000Z (over 2 years ago)
- Last Synced: 2024-10-14T08:34:14.999Z (3 months ago)
- Language: Shell
- Homepage: https://gitlab.com/sauravsahu/blog-semver-monorepo-gitlabci
- Size: 47.9 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# blog-semver-monorepo
A repo to demonstrate how to do semantic versioning in a monorepo with the help of [GitVersion](https://gitversion.net/)
## code organization
- Deployables are put in `apps` and `common` folder. The services with can be deployed to run the app are in `apps` folder.
- Libraries which are reusable within and outside this repo are placed in the `common` folder.## versioning
- Active development happens on `develop` branch.
- Merging Pull Requests on `develop` kicks of versioning with `alpha` suffixed tags, which can be used to deploy to Dev.
- To create stable releases, a release strategy is used.## release strategy
- Create a `release/X.Y.Z` branch from develop branch.
- Raise a Pull Request to `main` branch.
- The Pull Request body will be updated with the expected version bumps.
- Upon Pull Request merge, the stable releases are created and can be used to deploy to Dev and promoted to QA, and Prod.