Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Checkout repository

  2. Deploy to DEV (first environment in the pipeline)

  3. Create a versioned artifact

  4. Deploy versioned artifact to TEST, STAGE or PROD

...

Pseudo Code

1. Checkout repository

Code Block
languagebash
# Clone specific repo into your workspace
git clone <git_repo_url>

# Checkout specific branch 
git checkout <git_branch>

...