File tree Expand file tree Collapse file tree 1 file changed +15
-4
lines changed
Expand file tree Collapse file tree 1 file changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -28,10 +28,21 @@ jobs:
2828 ANACONDA_API_TOKEN : ${{ secrets.ANACONDA_TOKEN }}
2929 shell : bash -l {0}
3030 run : |
31- conda install -c conda-forge conda-build anaconda-client conda-verify -y
32- conda install -c conda-forge -c loop3d --file requirements.txt -y
33- conda build -c anaconda -c conda-forge -c loop3d --output-folder conda conda --python ${{ matrix.python-version }}
34- anaconda upload --label main conda/*/*.tar.bz2
31+
32+ conda update -n base -c defaults conda -y
33+ conda install -n base conda-libmamba-solver -y
34+ conda config --set solver libmamba
35+
36+
37+ conda install -c conda-forge conda-build anaconda-client conda-verify -y
38+ conda install -c conda-forge -c loop3d --file requirements.txt -y
39+
40+
41+ conda build -c anaconda -c conda-forge -c loop3d --output-folder conda conda --python ${{ matrix.python-version }}
42+
43+
44+ anaconda upload --label main conda/*/*.tar.bz2
45+
3546
3647 - name : upload artifacts
3748 uses : actions/upload-artifact@v4
You can’t perform that action at this time.
0 commit comments