Skip to content

Commit e75b4a8

Browse files
committed
Use Miniforge3 instead of Miniconda3
1 parent 7cc3c74 commit e75b4a8

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/conda_build.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,20 @@ jobs:
2525
- name: Setup Conda
2626
uses: conda-incubator/setup-miniconda@v3
2727
with:
28-
auto-update-conda: false
29-
conda-solver: libmamba
28+
miniforge-variant: Miniforge3
29+
miniforge-version: latest
30+
use-mamba: true
3031
condarc-file: condarc.yml
32+
auto-update-conda: false
3133
auto-activate-base: true
3234
activate-environment: ""
3335

3436
- name: Install Build Tools
35-
run: conda install python anaconda-client conda-build
37+
run: mamba install python anaconda-client conda-build
3638
- name: Configure Auto-Upload
3739
if: github.ref == 'refs/heads/stable'
3840
run: |
39-
conda config --set anaconda_upload yes
41+
mamba config --set anaconda_upload yes
4042
- name: Build Binary
4143
run: |
4244
# Set the CONDA_TOKEN environment variable

0 commit comments

Comments
 (0)