Skip to content

Commit 6cfb66b

Browse files
authored
[0.81] Fix symbol publishing auth by using System.AccessToken (#15651)
* Fix symbol publishing auth by using System.AccessToken * Disable publish symbols to unblock build
1 parent 5cff7ee commit 6cfb66b

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.ado/publish.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -380,11 +380,13 @@ extends:
380380
# Make symbols available through http://symweb.
381381
- task: PublishSymbols@2
382382
displayName: Publish symbols
383+
enabled: false
383384
env:
384385
ARTIFACTSERVICES_SYMBOL_ACCOUNTNAME: microsoft
385386
inputs:
386387
SearchPattern: vnext/target/**/*.pdb
387388
SymbolServerType: TeamServices
389+
Pat: $(System.AccessToken)
388390

389391
templateContext:
390392
sdl:
@@ -479,6 +481,7 @@ extends:
479481
# Symbol Publishing for Work Item 59264834 - MSRC Compliance
480482
- task: PublishSymbols@2
481483
displayName: 'Publish Symbols to Microsoft Symbol Server'
484+
enabled: false
482485
condition: and(succeeded(), in(variables['Build.Reason'], 'IndividualCI', 'BatchedCI'))
483486
env:
484487
ARTIFACTSERVICES_SYMBOL_ACCOUNTNAME: microsoft
@@ -491,6 +494,7 @@ extends:
491494
SymbolsArtifactName: 'ReactNativeWindows-Symbols'
492495
DetailedLog: true
493496
TreatNotIndexedAsWarning: false
497+
Pat: $(System.AccessToken)
494498

495499
templateContext:
496500
sdl:

0 commit comments

Comments
 (0)