From 767abcdc831515754f9fb2ddb2125ac7ac152a90 Mon Sep 17 00:00:00 2001 From: harryswift01 Date: Fri, 15 May 2026 11:24:10 +0100 Subject: [PATCH] fix(conda): ensure conda-build is available in GitHub Actions environment --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a295c4a..2bdec83 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -47,7 +47,8 @@ jobs: with: miniforge-variant: Miniforge3 python-version: "3.13.2" - auto-activate: false + auto-activate: true + activate-environment: base conda-remove-defaults: true channels: conda-forge,salilab channel-priority: strict @@ -57,6 +58,8 @@ jobs: run: | conda install -y conda-build anaconda-client conda config --set anaconda_upload no + conda list conda-build + conda build --help - name: Build package shell: bash -l {0}