Skip to content

Deploying Builder to Production

Jen Weber edited this page Mar 11, 2020 · 1 revision

Updating the production deployment

The goal is to regularly sync production with master.

  1. Confirm that it is a good time to deploy new code
  2. git checkout master && git pull origin master
  3. git checkout production
  4. git merge master (do not squash or rebase)
  5. git push origin production - After this, GitHub Actions will run the test & deploy
  6. Let the team know what has been deployed