Skip to content

Commit

Permalink
Merge pull request #2544 from dibarbet/allow_retry
Browse files Browse the repository at this point in the history
Allow retry of publish steps
  • Loading branch information
JoeRobich authored Jun 19, 2023
2 parents ad7dbf7 + 5f31458 commit 8b293ef
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ jobs:
nuGetFeedType: internal
packagesToPush: "$(System.ArtifactsDirectory)/nuget/**/*.nupkg"
publishVstsFeed: Builds/omnisharp
allowPackageConflicts: true
condition: and(succeeded(), or(startsWith(variables['Build.SourceBranch'], 'refs/tags/v'), eq(variables['Build.SourceBranch'], 'refs/heads/master')))
- task: NuGetCommand@2
displayName: "Push NuGet packages to nuget.org"
Expand All @@ -159,6 +160,7 @@ jobs:
nuGetFeedType: external
packagesToPush: "$(System.ArtifactsDirectory)/nuget/**/*.nupkg"
publishFeedCredentials: nuget.org
allowPackageConflicts: true
condition: and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags/v'))
- script: |
AZ_REPO=$(lsb_release -cs)
Expand Down

0 comments on commit 8b293ef

Please sign in to comment.