Skip to content

Commit

Permalink
Add GitHub token to vpack task to avoid hitting rate limit error from…
Browse files Browse the repository at this point in the history
… GitHub api (#6843)
  • Loading branch information
kmahone committed Mar 17, 2022
1 parent 6c8949a commit dc43fe3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions build/AzurePipelinesTemplates/MUX-PushCBSVpack-Job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,41 +57,47 @@ jobs:
displayName: 'Push VPack Microsoft.UI.Xaml'
inputs:
sourceDirectory: '$(System.ArtifactsDirectory)\drop\Release\WinUIVpack'
githubToken: $(WinUI2GitHubToken)
description: Microsoft.UI.Xaml
pushPkgName: Microsoft.UI.Xaml
version: $(vpackversion)
- task: PkgESVPack@12
displayName: 'Push VPack MicrosoftUIXamlInbox_x64'
inputs:
sourceDirectory: '$(System.ArtifactsDirectory)\drop\Release\CBS\x64'
githubToken: $(WinUI2GitHubToken)
description: 'MicrosoftUIXamlInbox_x64'
pushPkgName: 'MicrosoftUIXamlInbox_x64'
version: $(vpackversion)
- task: PkgESVPack@12
displayName: 'Push VPack MicrosoftUIXamlInbox_x86'
inputs:
sourceDirectory: '$(System.ArtifactsDirectory)\drop\Release\CBS\x86'
githubToken: $(WinUI2GitHubToken)
description: 'MicrosoftUIXamlInbox_x86'
pushPkgName: 'MicrosoftUIXamlInbox_x86'
version: $(vpackversion)
- task: PkgESVPack@12
displayName: 'Push VPack MicrosoftUIXamlInbox_arm'
inputs:
sourceDirectory: '$(System.ArtifactsDirectory)\drop\Release\CBS\arm'
githubToken: $(WinUI2GitHubToken)
description: 'MicrosoftUIXamlInbox_arm'
pushPkgName: 'MicrosoftUIXamlInbox_arm'
version: $(vpackversion)
- task: PkgESVPack@12
displayName: 'Push VPack MicrosoftUIXamlInbox_arm64'
inputs:
sourceDirectory: '$(System.ArtifactsDirectory)\drop\Release\CBS\arm64'
githubToken: $(WinUI2GitHubToken)
description: 'MicrosoftUIXamlInbox_arm64'
pushPkgName: 'MicrosoftUIXamlInbox_arm64'
version: $(vpackversion)
- task: PkgESVPack@12
displayName: 'Push VPack MicrosoftUIXamlInboxWinmd'
inputs:
sourceDirectory: '$(System.ArtifactsDirectory)\drop\Release\CBS\winmd'
githubToken: $(WinUI2GitHubToken)
description: 'MicrosoftUIXamlInboxWinmd'
pushPkgName: 'MicrosoftUIXamlInboxWinmd'
version: $(vpackversion)

0 comments on commit dc43fe3

Please sign in to comment.