...
Checkout repository
Deploy to DEV (first environment in the pipeline)
Create a versioned artifact
Deploy versioned artifact to TEST, STAGE or PROD
...
Pseudo Code
1. Checkout repository
Code Block | ||
---|---|---|
| ||
# Clone specific repo into your workspace git clone <git_repo_url> # Checkout specific branch git checkout <git_branch> |
...