Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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.
Jump to
Jump to file
Failed to load files.
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