We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d84d527 commit 9876b4bCopy full SHA for 9876b4b
.github/workflows/ci.yml
@@ -120,15 +120,15 @@ jobs:
120
121
- name: Building wheel
122
run: |
123
- make PYTHON_WHEEL_BUILD_VERSION="{{ matrix.pyversion }}*" sdist wheel_${{ matrix.image }}
+ make PYTHON_WHEEL_BUILD_VERSION="${{ matrix.pyversion }}*" sdist wheel_${{ matrix.image }}
124
125
- name: Copy wheels in dist
126
run: cp -v wheelhouse*/*-m*linux*.whl dist/ # manylinux / musllinux
127
128
- name: Archive Wheels
129
uses: actions/upload-artifact@v4
130
with:
131
- name: wheels-${{ matrix.image }}-{{ matrix.pyversion }}
+ name: wheels-${{ matrix.image }}-${{ matrix.pyversion }}
132
path: dist/*.whl
133
if-no-files-found: ignore
134
0 commit comments