Skip to content

Commit

Permalink
Merge pull request #15 from p4irin/publish-artifacts-to-the-pipeline
Browse files Browse the repository at this point in the history
Publish files in dist/ to pipeline
  • Loading branch information
p4irin committed Mar 26, 2024
2 parents 8bac82f + 9e0e211 commit 126df75
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,18 @@ stages:
displayName: 'Build distribution packages'
condition: succeeded()
- task: CopyFiles@2
inputs:
contents: dist/*
targetFolder: $(Build.ArtifactStagingDirectory)
displayName: 'Copy artifacts to push to pipeline'

- task: PublishBuildArtifacts@1
inputs:
pathtoPublish: $(Build.ArtifactStagingDirectory)
artifactName: dist
displayName: Publish artifacts to pipeline

- task: TwineAuthenticate@1
displayName: Twine Authenticate
inputs:
Expand Down

0 comments on commit 126df75

Please sign in to comment.