Skip to content

Commit

Permalink
Use Miniforge3 instead of Miniconda3
Browse files Browse the repository at this point in the history
  • Loading branch information
ssun30 committed Nov 22, 2024
1 parent 7cc3c74 commit e75b4a8
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/conda_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,20 @@ jobs:
- name: Setup Conda
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: false
conda-solver: libmamba
miniforge-variant: Miniforge3
miniforge-version: latest
use-mamba: true
condarc-file: condarc.yml
auto-update-conda: false
auto-activate-base: true
activate-environment: ""

- name: Install Build Tools
run: conda install python anaconda-client conda-build
run: mamba install python anaconda-client conda-build
- name: Configure Auto-Upload
if: github.ref == 'refs/heads/stable'
run: |
conda config --set anaconda_upload yes
mamba config --set anaconda_upload yes
- name: Build Binary
run: |
# Set the CONDA_TOKEN environment variable
Expand Down

0 comments on commit e75b4a8

Please sign in to comment.