Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion eng/templates/official/jobs/publish-library-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ jobs:
- script: |
echo "##vso[task.setvariable variable=BranchName]refs/heads/${{ parameters.BRANCH_NAME }}/$(NewLibraryVersion)"
displayName: 'Set branch variable'
- powershell: |
Write-Host "BranchName: $(BranchName)"
displayName: 'Display BranchName variable'
- task: DownloadPipelineArtifact@2
displayName: 'Download Python V2 Library release-*/x.y.z Artifact'
inputs:
Expand All @@ -69,7 +72,9 @@ jobs:
specificBuildWithTriggering: true
buildVersionToDownload: latestFromBranch
branchName: '$(BranchName)'
targetPath: PythonRuntimeArtifact
allowPartiallySucceededBuilds: true
allowFailedBuilds: true
targetPath: '$(Pipeline.Workspace)/PythonWorkerArtifact'
- task: UsePythonVersion@0
displayName: 'Use Python 3.13'
inputs:
Expand Down
Loading