Skip to content

Commit 6ea576a

Browse files
ci(build-deploy): fix incorrect glob for uploading artifact.. [backport #5908 to 1.14] (#5966)
Backport of #5908 to 1.14 The resulting file name is something like `ddtrace-1.14.0rc1-all.tar.gz` Failed job: https://github.com/DataDog/dd-trace-py/actions/runs/5015773964/jobs/8996024129 > Uploaded /home/runner/work/dd-trace-py/dd-trace-py/ddtrace-1.14.0rc1-all.tar.gz (100.0%) bytes 218103808:218366029 > stat *.all.tar.gz: no such file or directory ## Checklist - [x] Change(s) are motivated and described in the PR description. - [x] Testing strategy is described if automated tests are not included in the PR. - [x] Risk is outlined (performance impact, potential for breakage, maintainability, etc). - [x] Change is maintainable (easy to change, telemetry, documentation). - [x] [Library release note guidelines](https://ddtrace.readthedocs.io/en/stable/contributing.html#Release-Note-Guidelines) are followed. - [x] Documentation is included (in-code, generated user docs, [public corp docs](https://github.com/DataDog/documentation/)). - [x] OPTIONAL: PR description includes explicit acknowledgement of the performance implications of the change as reported in the benchmarks PR comment. ## Reviewer Checklist - [x] Title is accurate. - [x] No unnecessary changes are introduced. - [x] Description motivates each change. - [x] Avoids breaking [API](https://ddtrace.readthedocs.io/en/stable/versioning.html#interfaces) changes unless absolutely necessary. - [x] Testing strategy adequately addresses listed risk(s). - [x] Change is maintainable (easy to change, telemetry, documentation). - [x] Release note makes sense to a user of the library. - [x] Reviewer has explicitly acknowledged and discussed the performance implications of this PR as reported in the benchmarks PR comment. Co-authored-by: Brett Langdon <[email protected]>
1 parent fe520a0 commit 6ea576a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build_deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ jobs:
237237
shasum.txt
238238
- name: Upload files to release
239239
run: |
240-
gh release upload ${{ github.ref_name }} *.all.tar.gz shasum.txt
240+
gh release upload ${{ github.ref_name }} *-all.tar.gz shasum.txt
241241
env:
242242
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
243243

0 commit comments

Comments
 (0)