Skip to content

Commit

Permalink
Fix condition on mono-wasm workloads (#90646)
Browse files Browse the repository at this point in the history
Co-authored-by: Juan Sebastian Hoyos Ayala <juan.hoyos@microsoft.com>
  • Loading branch information
github-actions[bot] and hoyosjs committed Aug 15, 2023
1 parent b62a300 commit 725cf71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eng/pipelines/common/global-build-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,15 +153,15 @@ jobs:
- template: /eng/pipelines/common/restore-internal-tools.yml

- ${{ if ne(variables['System.TeamProject'], 'public') }}:
- ${{ if ne(parameters.osGroup, 'windows') }}:
- ${{ if and(ne(parameters.osGroup, 'windows'), ne(parameters.hostedOs, 'windows')) }}:
- task: Bash@3
displayName: Setup Private Feeds Credentials
inputs:
filePath: $(Build.SourcesDirectory)/eng/common/SetupNugetSources.sh
arguments: $(Build.SourcesDirectory)/NuGet.config $Token
env:
Token: $(dn-bot-dnceng-artifact-feeds-rw)
- ${{ if eq(parameters.osGroup, 'windows') }}:
- ${{ else }}:
- task: PowerShell@2
displayName: Setup Private Feeds Credentials
inputs:
Expand Down

0 comments on commit 725cf71

Please sign in to comment.