Skip to content

Commit f2bacac

Browse files
authored
minor fixes (#1803)
1 parent 259fd7d commit f2bacac

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

eng/templates/official/jobs/publish-library-release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ jobs:
6060
- script: |
6161
echo "##vso[task.setvariable variable=BranchName]refs/heads/${{ parameters.BRANCH_NAME }}/$(NewLibraryVersion)"
6262
displayName: 'Set branch variable'
63+
- powershell: |
64+
Write-Host "BranchName: $(BranchName)"
65+
displayName: 'Display BranchName variable'
6366
- task: DownloadPipelineArtifact@2
6467
displayName: 'Download Python V2 Library release-*/x.y.z Artifact'
6568
inputs:
@@ -69,7 +72,9 @@ jobs:
6972
specificBuildWithTriggering: true
7073
buildVersionToDownload: latestFromBranch
7174
branchName: '$(BranchName)'
72-
targetPath: PythonRuntimeArtifact
75+
allowPartiallySucceededBuilds: true
76+
allowFailedBuilds: true
77+
targetPath: '$(Pipeline.Workspace)/PythonWorkerArtifact'
7378
- task: UsePythonVersion@0
7479
displayName: 'Use Python 3.13'
7580
inputs:

0 commit comments

Comments
 (0)