From 878e2cabe240f89f58b517b03de1bbc3ec40e51d Mon Sep 17 00:00:00 2001 From: harryswift01 Date: Thu, 14 May 2026 15:49:20 +0100 Subject: [PATCH] fix(conda): ensure conda-build is available in GitHub Actions environment --- .github/workflows/release.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index df65713..9ccde59 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -168,7 +168,8 @@ jobs: with: miniforge-variant: Miniforge3 python-version: "3.12" - auto-activate: false + auto-activate: true + activate-environment: base conda-remove-defaults: true channels: conda-forge channel-priority: strict @@ -178,6 +179,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}