@@ -150,9 +150,39 @@ jobs:
150150 # output-dir: wheelhouse
151151 # config-file: "{package}/pyproject.toml"
152152
153- - uses : actions/upload-artifact@v4
153+ - name : Upload Artifact (Python 3.9)
154+ uses : actions/upload-artifact@v4
155+ if : matrix.python_version == 'cp39-*'
154156 with :
155- name : pyvcell-fv-${{ matrix.os }}-${{ matrix.python_version }}-cibw-wheels
157+ name : pyvcell-fv-${{ matrix.os }}-cp39-cibw-wheels
158+ path : ./wheelhouse/*.whl
159+
160+ - name : Upload Artifact (Python 3.10)
161+ uses : actions/upload-artifact@v4
162+ if : matrix.python_version == 'cp310-*'
163+ with :
164+ name : pyvcell-fv-${{ matrix.os }}-cp310-cibw-wheels
165+ path : ./wheelhouse/*.whl
166+
167+ - name : Upload Artifact (Python 3.11)
168+ uses : actions/upload-artifact@v4
169+ if : matrix.python_version == 'cp311-*'
170+ with :
171+ name : pyvcell-fv-${{ matrix.os }}-cp311-cibw-wheels
172+ path : ./wheelhouse/*.whl
173+
174+ - name : Upload Artifact (Python 3.12)
175+ uses : actions/upload-artifact@v4
176+ if : matrix.python_version == 'cp312-*'
177+ with :
178+ name : pyvcell-fv-${{ matrix.os }}-cp312-cibw-wheels
179+ path : ./wheelhouse/*.whl
180+
181+ - name : Upload Artifact (Python 3.13)
182+ uses : actions/upload-artifact@v4
183+ if : matrix.python_version == 'cp313-*'
184+ with :
185+ name : pyvcell-fv-${{ matrix.os }}-cp313-cibw-wheels
156186 path : ./wheelhouse/*.whl
157187
158188 - name : Setup tmate session on failure
0 commit comments