Skip to content

Commit 0c0f7ca

Browse files
author
Steve Lee (POWERSHELL HE/HIM) (from Dev Box)
committed
change variable
1 parent 4af8b39 commit 0c0f7ca

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.pipelines/DSC-Official.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ variables:
2424
- name: templateFile
2525
value: ${{ iif ( parameters.OfficialBuild, 'v2/OneBranch.Official.CrossPlat.yml@onebranchTemplates', 'v2/OneBranch.NonOfficial.CrossPlat.yml@onebranchTemplates' ) }}
2626
- group: DSC-Rust.SDK
27+
- name: officialBuild
28+
value: ${{ parameters.OfficialBuild }}
2729

2830
resources:
2931
repositories:
@@ -177,14 +179,13 @@ extends:
177179
condition: succeeded()
178180
179181
- job: SignMsixBundle
180-
condition: and(succeeded(), parameters.officialBuild)
182+
condition: and(succeeded(), eq(variables.officialBuild, true)
181183
dependsOn: CreateMsixBundle
182184
variables:
183185
ob_outputDirectory: '$(Build.ArtifactStagingDirectory)'
184186
ob_sdl_sbom_enabled: false
185187
ob_signing_setup_enabled: true
186188
ob_sdl_codeql_compiled_enabled: false
187-
officialBuild: ${{ parameters.OfficialBuild }}
188189
pool:
189190
type: windows
190191
steps:

0 commit comments

Comments
 (0)