Skip to content

Commit d4c1d0a

Browse files
committed
fix IsShipping
1 parent 35fc969 commit d4c1d0a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

azure-pipelines.yml

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ variables:
1717
_PublishType: none
1818
_SignType: test
1919
_DotNetPublishToBlobFeed: false
20+
_IsShipping: false
2021
# else
2122
# TODO: Remove the Build.DefinitionName check once the github repo goes public
2223
${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest'), not(contains(variables['Build.DefinitionName'], 'github'))) }}:
@@ -25,6 +26,7 @@ variables:
2526
_PublishType: blob
2627
_SignType: real
2728
_DotNetPublishToBlobFeed: true
29+
_IsShipping: true
2830

2931
# only trigger ci builds for the master branch
3032
trigger:

eng/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ phases:
6767
$(_PublishArgs)
6868
$(_SignArgs)
6969
$(_OfficialBuildIdArgs)
70-
/p:Platform=$(_Platform) /p:IsShipping=$(IsShipping)
70+
/p:IsShipping=$(_IsShipping)
7171
displayName: Windows Build / Publish
7272
condition: and(succeeded(), eq(variables['Agent.Os'], 'Windows_NT'))
7373

0 commit comments

Comments
 (0)