Make sure the CI is running: https://github.com/configcat/common-js/actions/workflows/common-js-ci.yml
-
Run
./deploy.sh
-
Add release notes: https://github.com/configcat/common-js/releases
-
Update
common-js
injs-sdk
andnode-sdk
andjs-ssr-sdk
and re-deploy both packages. -
Test all packages manually!
-
Run tests
npm test
-
Create a new version (patch, minor, major) Increase version number by using
npm version patch | minor | major
Example: increasing patch version
npm version patch
-
Push tag to remote
If you tag the commit, a GitHub action automatically publishes the package to NPM.
git push origin <new version>
Example: git push origin v1.1.15
You can follow the build status here.
-
Add release notes: https://github.com/configcat/common-js/releases
-
Update
common-js
injs-sdk
,node-sdk
andjs-ssr-sdk
and re-deploy all packages. -
Test all packages manually!