Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 692 Bytes

RELEASE-INSTRUCTIONS.md

File metadata and controls

9 lines (8 loc) · 692 Bytes

Instruction for releasing a new version of Tangy Form Editor

  1. Merge all changes into master branch.
  2. If any of your dependencies changed - such as tangy-form - run npm install to generate an updated package-lock.json.
  3. Ensure CHANGELOG.md is complete.
  4. Run npm version major, npm version minor, or npm version patch depending on what kind of version change this is. This command will make a commit and tag named after the incremented version.
  5. git push origin master && git push origin --tag
  6. Draft a new release on Github of the same tag name using that tag. Use the CHANGELOG notes.
  7. Ensure the github action successfully built and published the npm package.