Skip to content

Commit 7f4c9d9

Browse files
committed
chore: switch back to artifact names in workflow
1 parent 4f77c24 commit 7f4c9d9

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/build-test-package-publish.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -223,17 +223,17 @@ jobs:
223223
path: dist/robotcode*.vsix
224224

225225
- name: Upload python package
226-
id: upload-python-package
226+
id: upload-python-packages
227227
uses: actions/upload-artifact@v4
228228
with:
229-
name: python-package
229+
name: python-packages
230230
path: dist/*.tar.gz
231231

232232
- name: Upload python wheel package
233-
id: upload-wheel-package
233+
id: upload-wheel-packages
234234
uses: actions/upload-artifact@v4
235235
with:
236-
name: wheel-package
236+
name: wheel-packages
237237
path: dist/*.whl
238238

239239
- name: Upload intellij plugin
@@ -275,19 +275,19 @@ jobs:
275275

276276
- uses: actions/download-artifact@v4
277277
with:
278-
artifact-ids: upload-vscode-package
278+
name: vscode-package
279279
path: dist
280280
- uses: actions/download-artifact@v4
281281
with:
282-
artifact-ids: upload-python-package
282+
name: python-packages
283283
path: dist
284284
- uses: actions/download-artifact@v4
285285
with:
286-
artifact-ids: upload-wheel-package
286+
name: wheel-packages
287287
path: dist
288288
- uses: actions/download-artifact@v4
289289
with:
290-
artifact-ids: upload-intellij-package
290+
name: intellij-package
291291
path: dist
292292

293293
- name: get release informations

0 commit comments

Comments
 (0)