Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .pipelines/iis.compression.build.1es.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ parameters:
- name: restoreSolution
type: string
default: 'Compression.sln;IIS-Setup/IIS-Setup.sln'
- name: signType
type: string
default: 'Real'
- name: productMajor
type: number
default: 1
Expand Down Expand Up @@ -59,7 +56,6 @@ variables:
ProductMinor: ${{ parameters.productMinor }}
BuildMajor: ${{ parameters.buildMajor }}
BuildMinor: ${{ parameters.buildMinor }}
SignType: ${{ parameters.signType }}
SigningIdentity: 'Microsoft400'
CodeQL.Enabled: ${{ parameters.codeQLEnabled }}
msbuildArgs: '/p:RunWixToolsOutOfProc=true'
Expand Down Expand Up @@ -91,7 +87,11 @@ extends:
mb:
signing:
enabled: true
signType: $(SignType)
${{ if eq(variables['Build.Reason'], 'IndividualCI') }}:
signType: real
signWithProd: true
${{ else }}:
signType: test
outputs:
- output: pipelineArtifact
displayName: 'Publish Artifact: Binaries'
Expand Down