Skip to content

Commit

Permalink
Update release-pipeline.yml for Azure Pipelines (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
st0o0 authored Jun 14, 2023
1 parent 146a609 commit 2b007e9
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .azure-pipelines/release-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,13 @@ steps:
publishVstsFeed: $(internalFeedName)
allowPackageConflicts: true

- task: NuGetCommand@2
inputs:
command: 'push'
packagesToPush: '$(Build.ArtifactStagingDirectory)/**/*.nupkg;!$(Build.ArtifactStagingDirectory)/**/*.symbols.nupkg'
nuGetFeedType: 'external'
publishFeedCredentials: 'Nuget.org'

- task: GitHubRelease@0
inputs:
action: create
Expand All @@ -108,4 +115,5 @@ steps:
isPreRelease: false
addChangeLog: true
assets: $(Build.ArtifactStagingDirectory)/packages/*
displayName: Create Github Release
displayName: Create Github Release

0 comments on commit 2b007e9

Please sign in to comment.