Skip to content

Commit

Permalink
last tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
timkpaine committed Sep 20, 2021
1 parent 55a4f80 commit 0622ead
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,15 +133,15 @@ parameters:
type: stepList
default:
# Build a python sdist
- bash: export SDIST_PUBLISH_NAME=perspective-python-$(Build.SourceBranchName)-$(Build.BuildId)-$[format('{0:yyyy}-{0:MM}-{0:dd}T{0:HH}:{0:mm}:{0:ss}', pipeline.startTime)].tar.gz && cd $(System.DefaultWorkingDirectory)/python/perspective && ./scripts/build_sdist.sh
- bash: export SDIST_PUBLISH_NAME=perspective-python-$(Build.SourceBranchName)-$(Build.BuildId)-$(pipeline.startTime).tar.gz && cd $(System.DefaultWorkingDirectory)/python/perspective && ./scripts/build_sdist.sh
displayName: 'Build sdist'


# Save the artifact to Azure storage
- task: PublishPipelineArtifact@1
inputs:
targetPath: '$(System.DefaultWorkingDirectory)/python/perspective/dist/'
artifactName: 'perspective-python-$(Build.SourceBranchName)-$(Build.BuildId)-$[format("{0:yyyy}-{0:MM}-{0:dd}T{0:HH}:{0:mm}:{0:ss}", pipeline.startTime)].tar.gz'
artifactName: 'perspective-python-$(Build.SourceBranchName)-$(Build.BuildId)-$(pipeline.startTime).tar.gz'

- name: pythonMacWheelSteps
type: stepList
Expand Down

0 comments on commit 0622ead

Please sign in to comment.