Skip to content

Commit aadd71b

Browse files
Update release pipeline to pickup new safety improvements (#740)
1 parent 5548140 commit aadd71b

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.azure-pipelines/release.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
trigger: none # Only run this pipeline when manually triggered
22

3+
parameters:
4+
- name: publishVersion
5+
displayName: Version to publish
6+
type: string
7+
- name: dryRun
8+
displayName: Dry run
9+
type: boolean
10+
default: false
11+
312
resources:
413
pipelines:
514
- pipeline: build # identifier to use in pipeline resource variables
@@ -22,3 +31,6 @@ extends:
2231
parameters:
2332
pipelineID: $(resources.pipeline.build.pipelineID)
2433
runID: $(resources.pipeline.build.runID)
34+
publishVersion: ${{ parameters.publishVersion }}
35+
dryRun: ${{ parameters.dryRun }}
36+
environmentName: AzCodeDeploy

0 commit comments

Comments
 (0)