Skip to content

Commit adeb717

Browse files
committed
ci: fixing artifact name
1 parent b957474 commit adeb717

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/release-please.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,13 +120,14 @@ jobs:
120120
- name: upload artifacts
121121
uses: actions/upload-artifact@v4
122122
with:
123-
name: conda-build
123+
name: conda-build-$${{ matrix.python-version }}
124124
path: conda
125125

126126
make_sdist:
127127
needs: ["documentation-test", "continuous-integration"]
128128
name: Make SDist
129129
runs-on: ubuntu-latest
130+
130131
steps:
131132
- uses: actions/checkout@v4
132133

@@ -143,12 +144,15 @@ jobs:
143144
upload_to_conda:
144145
runs-on: ubuntu-latest
145146
needs: ["release-please", "conda-deploy"]
146-
147+
strategy:
148+
fail-fast: false
149+
matrix:
150+
python-version: ${{ fromJSON(vars.PYTHON_VERSIONS)}}
147151
if: ${{ needs.release-please.outputs.release_created }}
148152
steps:
149153
- uses: actions/download-artifact@v4
150154
with:
151-
name: conda-buiild
155+
name: conda-build-$${{ matrix.python-version }}
152156
path: conda
153157
- uses: conda-incubator/setup-miniconda@v3
154158
- name: upload all files to conda-forge

0 commit comments

Comments
 (0)