Skip to content
This repository has been archived by the owner on Jun 30, 2022. It is now read-only.

Release

Tiago Evangelista Pinto edited this page Apr 8, 2022 · 8 revisions

Steps

  1. Go to develop branch
git checkout develop
  1. Update develop branch with Github latest version
git pull [remote] develop
  1. Create a new branch with the release name/version
git checkout -b release-x.x.x
  1. Change package.json version, update the CHANGELOG.md file

  2. Add the files changed, commit, push

git add .
git commit -m"Release x.x.x"
git push [remote] [release-x.x.x]
  1. Open a pr using master as base

    • Title: Release x.x.x
    • Description: New things from CHANGELOG.md
  2. When ready to merge, don't forget to NOT USE squash merge

  3. Update develop with latest version of master

Clone this wiki locally