Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion build/template-install-dependencies.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#template-install-dependencies.yaml

parameters:
authenticateForFeed: 'true'

#install dotnet core

steps:
Expand Down Expand Up @@ -46,6 +48,7 @@ steps:

- task: NuGetAuthenticate@1
displayName: NuGet Authenticate
condition: eq('${{ parameters.authenticateForFeed }}', 'true')
inputs:
nuGetServiceConnections: 'IDDP Feed'

Expand Down
2 changes: 2 additions & 0 deletions build/template-onebranch-release-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ steps:

# Bootstrap the build
- template: template-install-dependencies.yaml
parameters:
authenticateForFeed: 'false'

# Nuget Restore and Build Microsoft.Identity.Web.sln
- template: template-restore-build-MSIdentityWeb.yaml
Expand Down
Loading