Skip to content

Commit

Permalink
Update conda_build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mj-jimenez authored Sep 10, 2024
1 parent 7f34025 commit 77b4874
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/conda_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3

- name: Install Python 3.10 in base environment
run: conda install --name base python=3.10

- name: Setup Miniforge
uses: conda-incubator/setup-miniconda@v3
Expand All @@ -39,9 +36,15 @@ jobs:
miniforge-variant: Miniforge3
miniforge-version: latest
activate-environment: bc_builds
environment-file: ./.github/workflows/helpers/mambabuild.yml
conda-version: "23.5.0"
use-mamba: true

- name: Ensure Python 3.10 is installed in base environment
run: mamba install --name base python=3.10

- name: Update Conda and Mamba
run: |
mamba install --name base conda=23.5.0 # Update Conda to the desired version
mamba update --name base mamba # Update Mamba
- name: Update beyondcell environment
run: mamba update -n bc_builds -f helpers/mambabuild.yml
Expand Down

0 comments on commit 77b4874

Please sign in to comment.