From f26eac2b902873260208bdfe51b911dbdd2172d3 Mon Sep 17 00:00:00 2001 From: Jas Kalayan Date: Fri, 25 Sep 2026 20:16:42 +0100 Subject: [PATCH 1/2] build package with ccpbiosim included as a channel --- .github/workflows/release.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 9823ecf..5046da7 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -231,9 +231,13 @@ jobs: env: PIP_NO_INDEX: "0" run: | - PKG_PATH=$(conda build conda-recipe --output) + PKG_PATH=$(conda build conda-recipe -c CCPBioSim -c conda-forge --output) echo "PKG_PATH=$PKG_PATH" >> "$GITHUB_ENV" - conda build conda-recipe + + conda build conda-recipe \ + -c CCPBioSim \ + -c conda-forge \ + --override-channel test -f "$PKG_PATH" echo "Built: $PKG_PATH" From 15df2caf69ce38bad2fb8a4d7c139ba49d152d90 Mon Sep 17 00:00:00 2001 From: Jas Kalayan Date: Fri, 25 Sep 2026 20:16:52 +0100 Subject: [PATCH 2/2] build package with ccpbiosim included as a channel --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5046da7..a9d6a23 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -215,7 +215,7 @@ jobs: auto-activate: true activate-environment: base conda-remove-defaults: true - channels: ccpbiosim,conda-forge + channels: CCPBioSim,conda-forge channel-priority: strict - name: Install build tools