Skip to content

Latest commit

 

History

History
48 lines (34 loc) · 797 Bytes

deployment.md

File metadata and controls

48 lines (34 loc) · 797 Bytes

Deployment

Production

Create the Release

  • Checkout dev

    git fetch --all
    git checkout dev
    git reset --hard origin/dev
  • Create new release

    1. Update the NEWS.md file listing the changes from the last release

    2. Bump the version in package.json using semantic version

    3. Create a version commit with the following messages : Release [VERSION]

      e.g.

      git commit -m "Release 3.1.5" --no-verify
    4. Push on origin

      git push origin/dev
  • Create PR against master

When the PR Is merged on master

  • Checkout master

    git fetch --all
    git checkout master
    git reset --hard origin/master
  • Create a tag

    git tag [VERSION]
    git push [VERSION]