Skip to content
This repository was archived by the owner on Jun 6, 2025. It is now read-only.

Commit 868fc9f

Browse files
committed
Fix wheel upload
1 parent 2368f1b commit 868fc9f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/conda-package.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,18 @@ jobs:
7272
runs-on: ${{ matrix.os }}
7373
defaults:
7474
run:
75-
shell: ${{ matrix.os == 'windows-latest' && 'cmd /C CALL {0}' || 'bash -l {0}' }}
75+
shell: 'bash -l {0}'
7676
steps:
7777
- name: Download artifact
7878
uses: actions/download-artifact@v4
7979
with:
8080
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
8181

82+
- name: Download wheels artifact
83+
uses: actions/download-artifact@v4
84+
with:
85+
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Wheels Python ${{ matrix.python }}
86+
8287
- uses: conda-incubator/setup-miniconda@v3
8388
with:
8489
auto-activate-base: true

0 commit comments

Comments
 (0)