From e75b4a8ac15ed93f99c2b926e822233761ea57bd Mon Sep 17 00:00:00 2001 From: ssun30 Date: Fri, 22 Nov 2024 12:17:56 -0500 Subject: [PATCH] Use Miniforge3 instead of Miniconda3 --- .github/workflows/conda_build.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/conda_build.yml b/.github/workflows/conda_build.yml index 1de131559e..4215351bc2 100644 --- a/.github/workflows/conda_build.yml +++ b/.github/workflows/conda_build.yml @@ -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