File tree 1 file changed +13
-1
lines changed 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -320,11 +320,16 @@ jobs:
320
320
matrix :
321
321
python : ['3.9', '3.10', '3.11']
322
322
steps :
323
- - name : Download artifact
323
+ - name : Download conda artifact
324
324
uses : actions/download-artifact@v3
325
325
with :
326
326
name : ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
327
327
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
+
328
333
- name : Install anaconda-client
329
334
run : conda install anaconda-client
330
335
- name : Add conda to system path
@@ -353,10 +358,17 @@ jobs:
353
358
uses : actions/download-artifact@v3
354
359
with :
355
360
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
+
356
367
- uses : conda-incubator/setup-miniconda@v2
357
368
with :
358
369
auto-activate-base : true
359
370
activate-environment : " "
371
+
360
372
- name : Install anaconda-client
361
373
run : conda install anaconda-client
362
374
You can’t perform that action at this time.
0 commit comments