Created
April 29, 2020 12:07
-
-
Save johnkors/918f750a1a25f543b016c3ddbda7c702 to your computer and use it in GitHub Desktop.
Azure Pipelines using a stage template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
trigger: | |
paths: | |
include: | |
- infrastructure/* | |
stages: | |
- template: 'templates/deploy_infra_stage.yml' | |
parameters: | |
environment: 'test' | |
hostname: 'myservice-test.domain.com' | |
- template: 'templates/deploy_infra_stage.yml' | |
parameters: | |
environment: 'prod' | |
hostname: 'myservice.domain.com' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment