File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments