Skip to content

Commit caa0939

Browse files
Merge pull request #1425 from IntelPython/fix-wheel-uploads
Fix upload_linux/upload_windows steps
2 parents b4aabe4 + a9aae28 commit caa0939

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/conda-package.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,11 +320,16 @@ jobs:
320320
matrix:
321321
python: ['3.9', '3.10', '3.11']
322322
steps:
323-
- name: Download artifact
323+
- name: Download conda artifact
324324
uses: actions/download-artifact@v3
325325
with:
326326
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
327327

328+
- name: Download wheel artifact
329+
uses: actions/download-artifact@v3
330+
with:
331+
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Wheels Python ${{ matrix.python }}
332+
328333
- name: Install anaconda-client
329334
run: conda install anaconda-client
330335
- name: Add conda to system path
@@ -353,10 +358,17 @@ jobs:
353358
uses: actions/download-artifact@v3
354359
with:
355360
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
361+
362+
- name: Download wheel artifact
363+
uses: actions/download-artifact@v3
364+
with:
365+
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Wheels Python ${{ matrix.python }}
366+
356367
- uses: conda-incubator/setup-miniconda@v2
357368
with:
358369
auto-activate-base: true
359370
activate-environment: ""
371+
360372
- name: Install anaconda-client
361373
run: conda install anaconda-client
362374

0 commit comments

Comments
 (0)