diff options
Diffstat (limited to 'azure-pipelines.yml')
| -rw-r--r-- | azure-pipelines.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index a140598..004695c 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -16,3 +16,14 @@ strategy: steps: - powershell: .\download.ps1 displayName: 'Run the build' + +- task: ArchiveFiles@2 + inputs: + rootFolderOrFile: 'Python-$(PYVERSION)-$(PYARCH)' + archiveType: 'zip' + archiveFile: '$(Build.ArtifactStagingDirectory)/Python-$(PYVERSION)-$(PYARCH).zip' + +- task: PublishBuildArtifacts@1 + inputs: + pathtoPublish: '$(Build.ArtifactStagingDirectory)' + artifactName: drop |
