Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add MAINTAINERS.md #50

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/publish-tarballs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
- '.gitignore'
- 'LICENSE'
- 'README.md'
- 'MAINTAINERS.md'

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down
17 changes: 17 additions & 0 deletions MAINTAINERS.md
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