@@ -216,27 +216,27 @@ jobs:
216
216
run : hatch run build:package
217
217
218
218
- name : Upload VSCode package
219
+ id : upload-vscode-package
219
220
uses : actions/upload-artifact@v4
220
221
with :
221
- name : vscode-package
222
222
path : dist/robotcode*.vsix
223
223
224
224
- name : Upload python package
225
+ id : upload-python-package
225
226
uses : actions/upload-artifact@v4
226
227
with :
227
- name : python-package
228
228
path : dist/*.tar.gz
229
229
230
230
- name : Upload python wheel package
231
+ id : upload-wheel-package
231
232
uses : actions/upload-artifact@v4
232
233
with :
233
- name : wheel-package
234
234
path : dist/*.whl
235
235
236
236
- name : Upload intellij plugin
237
+ id : upload-intellij-package
237
238
uses : actions/upload-artifact@v4
238
239
with :
239
- name : intellij-package
240
240
path : intellij-client/build/distributions/*.zip
241
241
242
242
publish :
@@ -271,19 +271,19 @@ jobs:
271
271
272
272
- uses : actions/download-artifact@v4
273
273
with :
274
- name : vscode-package
274
+ artifact-ids : upload- vscode-package
275
275
path : dist
276
276
- uses : actions/download-artifact@v4
277
277
with :
278
- name : python-package
278
+ artifact-ids : upload- python-package
279
279
path : dist
280
280
- uses : actions/download-artifact@v4
281
281
with :
282
- name : wheel-package
282
+ artifact-ids : upload- wheel-package
283
283
path : dist
284
284
- uses : actions/download-artifact@v4
285
285
with :
286
- name : intellij-package
286
+ artifact-ids : upload- intellij-package
287
287
path : dist
288
288
289
289
- name : get release informations
0 commit comments