Skip to content

Commit 4e101b9

Browse files
authored
Fix command to add build tag (#55315)
* Fix command to add build tag * Update helix-matrix.yml
1 parent 31de1b2 commit 4e101b9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: .azure/pipelines/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ extends:
174174
agentOs: Windows
175175
steps:
176176
- ${{ if notIn(variables['Build.Reason'], 'PullRequest') }}:
177-
- script: "echo ##vso[build.addbuildtag]daily-build"
177+
- script: echo "##vso[build.addbuildtag]daily-build"
178178
displayName: 'Set CI daily-build tag'
179179

180180
# !!! NOTE !!! Some of these steps have disabled code signing.

Diff for: .azure/pipelines/helix-matrix.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
timeoutInMinutes: 300
4141
steps:
4242
- ${{ if eq(variables['Build.CronSchedule.DisplayName'], 'IdentityModel test job') }}:
43-
- script: "echo ##vso[build.addbuildtag]identitymodel-test"
43+
- script: echo "##vso[build.addbuildtag]identitymodel-test"
4444
displayName: 'Set CI identitymodel-test tag'
4545
# Build the shared framework
4646
- script: ./eng/build.cmd -ci -prepareMachine -nativeToolsOnMachine -nobl -all -pack -arch x64

0 commit comments

Comments
 (0)