Skip to content

Commit 037285a

Browse files
authored
Fix the artifact path in release (#12)
1 parent 6047f65 commit 037285a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

eng/pipelines/templates/jobs/release.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ jobs:
88
- download: current
99
displayName: Download $(PipelineArtifactName)_packed
1010
artifact: $(PipelineArtifactName)_packed
11-
targetPath: $(Pipeline.Workspace)/drop
1211

1312
- template: /eng/common/pipelines/templates/steps/retain-run.yml
1413

@@ -17,8 +16,8 @@ jobs:
1716
"$(Version)" `
1817
--title "$(Version)"
1918
20-
gh release upload $(Version) $(Pipeline.Workspace)/drop/platform/*.tgz
21-
gh release upload $(Version) $(Pipeline.Workspace)/drop/wrapper/*.tgz
19+
gh release upload $(Version) $(Pipeline.Workspace)/$(PipelineArtifactName)_packed/platform/*.tgz
20+
gh release upload $(Version) $(Pipeline.Workspace)/$(PipelineArtifactName)_packed/wrapper/*.tgz
2221
displayName: Create GitHub Release and upload artifacts
2322
env:
2423
GH_TOKEN: $(azuresdk-github-pat)

0 commit comments

Comments
 (0)