Skip to content
This repository has been archived by the owner on Aug 28, 2023. It is now read-only.

Latest commit

 

History

History
48 lines (29 loc) · 1.01 KB

deployment.md

File metadata and controls

48 lines (29 loc) · 1.01 KB

Trace | Deployment

Release Process

Instructions

  1. After cloning the repository, checkout master branch

    git checkout master
    
  2. Ensure you have the latest version of code

    git pull
    
  3. Update the Changelog by replacing Unreleased with 1.0.1 (YYYY-MM-DD)

  4. Push changes to the master branch

    git add -A
    git commit -m "[RELEASE] 1.0.1"
    git push
    
  5. Follow the steps below for Travis CI or Manual Deployments

Deployment

Automated

  1. Commit to the master branch (or merge a Merge Request into the master branch) to trigger the build process for the Test environment

  2. Once Test can be promoted to Production, create a Production Git Tag to trigger the build and deployment process for the Production environment e.g. 1.0.1

Manual

Prerequisites

Instructions

Coming soon...