Skip to content

Production Deployment

Julia Nguyen edited this page Oct 3, 2018 · 18 revisions

Once you merge to master, your changes are not automatically deployed to production. They are only deployed if a new tag is pushed. We rely on tags to create release notes.

Master is only deployed to production when a git tag is created. We follow Semver conventions for versioning.

We recommend creating a tag this way via the terminal from master:

git tag -a v[X.X.X] -m [Message here]
git push origin master --tags

You can also use GitHub Releases.

Once created/pushed, the tag should create a new build called build-test-deploy. You can see its progress in our CircleCI dashboard.

Clone this wiki locally