Skip to content

Commit e754326

Browse files
committed
Rename artifacts after their producing jobs: cli, python_wheel
Co-authored-by: Isaac
1 parent 6115c1c commit e754326

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/release-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121
- name: Upload artifacts
122122
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
123123
with:
124-
name: release-artifacts
124+
name: cli
125125
path: |
126126
dist/*.zip
127127
dist/*.tar.gz
@@ -197,5 +197,5 @@ jobs:
197197
- name: Upload Python wheel
198198
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
199199
with:
200-
name: python-wheel
200+
name: python_wheel
201201
path: python/dist/*

.github/workflows/release-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: Download release artifacts
4343
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
4444
with:
45-
name: release-artifacts
45+
name: cli
4646
path: dist
4747
run-id: ${{ inputs.build_run_id }}
4848
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -98,7 +98,7 @@ jobs:
9898
- name: Download release artifacts
9999
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
100100
with:
101-
name: release-artifacts
101+
name: cli
102102
path: dist
103103
run-id: ${{ inputs.build_run_id }}
104104
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -206,7 +206,7 @@ jobs:
206206
- name: Download release artifacts
207207
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
208208
with:
209-
name: release-artifacts
209+
name: cli
210210
path: dist
211211
run-id: ${{ inputs.build_run_id }}
212212
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -289,7 +289,7 @@ jobs:
289289
- name: Download Python wheel
290290
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
291291
with:
292-
name: python-wheel
292+
name: python_wheel
293293
path: dist
294294
run-id: ${{ inputs.build_run_id }}
295295
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)