Skip to content

Commit

Permalink
Fix nightly package publishing NuGet path (#9040)
Browse files Browse the repository at this point in the history
* Fix nightly nuget path

* Bump nightly version
  • Loading branch information
ReubenBond committed Jun 11, 2024
1 parent c56d27c commit c76b443
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .azure/pipelines/nightly-main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ extends:
parameters:
settings:
skipBuildTagsForGitHubPullRequests: true
pool:
pool:
name: $(pool_name)
image: orleans-build-image
os: windows
Expand All @@ -38,7 +38,7 @@ extends:
- template: /.azure/pipelines/templates/build.yaml@self
parameters:
build_configuration: Release
version_prefix: '8.1.0'
version_prefix: '8.2.0'
include_suffix: true
version_suffix: nightly.$(Build.BuildNumber)
codesign: true
Expand Down
4 changes: 2 additions & 2 deletions .azure/pipelines/templates/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ jobs:
- output: pipelineArtifact
targetPath: '$(build.sourcesdirectory)/Artifacts/${{parameters.build_configuration}}'
artifactName: nuget
# Publish packages to nightly
# Publish packages to nightly
- ${{ if and(eq(parameters.codesign, true), eq(parameters.publish_nightly, true)) }}:
- output: nuget
useDotNetTask: false
packageParentPath: $(Pipeline.Workspace)
packagesToPush: $(Pipeline.Workspace)/nuget/**/*.nupkg
packagesToPush: $(build.sourcesdirectory)/Artifacts/${{parameters.build_configuration}}/**/*.nupkg
nuGetFeedType: internal
publishVstsFeed: 'orleans-public/orleans-nightly'
allowPackageConflicts: true
Expand Down

0 comments on commit c76b443

Please sign in to comment.