Skip to content
This repository has been archived by the owner on Oct 29, 2024. It is now read-only.

CI build updates #458

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion azure-pipelines/build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
parameters:
windowsPool: VSEngSS-MicroBuild2019-1ES
windowsPool: VSEngSS-MicroBuild2022-1ES
macPool: MicroBuildV2MacPool

jobs:
Expand Down
34 changes: 17 additions & 17 deletions azure-pipelines/publish-deployables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@ steps:
displayName: Download deployables
artifact: SignedPackages

- task: NuGetCommand@2
displayName: Push packages to Azure DevOps private feed
inputs:
command: push
packagesToPush: $(Pipeline.Workspace)/SignedPackages/*.nupkg
nuGetFeedType: internal
publishVstsFeed: $(ci_feed)
allowPackageConflicts: true
condition: and(succeeded(), ne(variables['ci_feed'], ''), ne(variables['Build.Reason'], 'PullRequest'))
# - task: NuGetCommand@2
# displayName: Push packages to Azure DevOps private feed
# inputs:
# command: push
# packagesToPush: $(Pipeline.Workspace)/SignedPackages/*.nupkg
# nuGetFeedType: internal
# publishVstsFeed: $(ci_feed)
# allowPackageConflicts: true
# condition: and(succeeded(), ne(variables['ci_feed'], ''), ne(variables['Build.Reason'], 'PullRequest'))

- task: NuGetCommand@2
displayName: Push packages to Azure DevOps public feed
inputs:
command: 'push'
packagesToPush: $(Pipeline.Workspace)/SignedPackages/*.nupkg
nuGetFeedType: 'external'
publishFeedCredentials: 'MobileBlazorBindings-Packages-nightly'
condition: and(succeeded(), ne(variables['ci_feed'], ''), ne(variables['Build.Reason'], 'PullRequest'))
# - task: NuGetCommand@2
# displayName: Push packages to Azure DevOps public feed
# inputs:
# command: 'push'
# packagesToPush: $(Pipeline.Workspace)/SignedPackages/*.nupkg
# nuGetFeedType: 'external'
# publishFeedCredentials: 'MobileBlazorBindings-Packages-nightly'
# condition: and(succeeded(), ne(variables['ci_feed'], ''), ne(variables['Build.Reason'], 'PullRequest'))
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "6.0",
"version": "6.0.100",
"rollForward": "minor"
},
"msbuild-sdks": {
Expand Down
Loading