-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
95a4d13
commit 6f7f764
Showing
1 changed file
with
17 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Release Process | ||
|
||
- Close all issues for planned release | ||
- Checkout and pull `main` branch in git from origin | ||
- Run `npm version <semver-pre-release, e.g., 1.0.0>` (Update in package.json to be a semver pre-release, then commit, tag with semver pre-release and auto run `git push && git push --tags`) | ||
- Triggers CI build from tag to call `npm run publish` (Publish node package to npm registry) | ||
- Verify pre-released package | ||
- Create a temporary node project | ||
- In temporary project, run `npm install m30pm` | ||
- Inspect that m30pm CLI app is installed as expected | ||
- Run `npm version <semver-release, e.g., 1.0.0>` (Update in package.json to be a semver release, then commit, tag with semver release and auto run `git push && git push --tags`) | ||
- Triggers CI build from tag to call `npm run publish` (Publish node package to npm registry) | ||
- Create new release (on GitHub) | ||
- select (final release) tag | ||
- auto-generate release notes | ||
- publish final release | ||
|