From 9b0d064b9a9077fc439291e9ba95cd0ebdc28eb6 Mon Sep 17 00:00:00 2001 From: Jas Kalayan Date: Fri, 25 Sep 2026 21:10:34 +0100 Subject: [PATCH] remove checks --- .github/workflows/release.yaml | 33 +++++---------------------------- 1 file changed, 5 insertions(+), 28 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c34cdfc..5046da7 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -218,24 +218,6 @@ jobs: channels: ccpbiosim,conda-forge channel-priority: strict - - name: Configure Conda channels - shell: bash -l {0} - run: | - conda config --remove-key channels || true - conda config --add channels https://conda.anaconda.org/ccpbiosim - conda config --add channels https://conda.anaconda.org/conda-forge - conda config --set channel_priority strict - conda config --show channels - - - name: Verify biosim-schema - shell: bash -l {0} - run: | - conda search \ - --override-channels \ - -c https://conda.anaconda.org/ccpbiosim \ - -c https://conda.anaconda.org/conda-forge \ - "biosim-schema>=1.0,<2.0" - - name: Install build tools shell: bash -l {0} run: | @@ -249,20 +231,15 @@ jobs: env: PIP_NO_INDEX: "0" run: | - PKG_PATH=$(conda build conda-recipe \ - --override-channel \ - -c https://conda.anaconda.org/ccpbiosim \ - -c https://conda.anaconda.org/conda-forge \ - --output) - + PKG_PATH=$(conda build conda-recipe -c CCPBioSim -c conda-forge --output) echo "PKG_PATH=$PKG_PATH" >> "$GITHUB_ENV" conda build conda-recipe \ - --override-channel \ - -c https://conda.anaconda.org/ccpbiosim \ - -c https://conda.anaconda.org/conda-forge - + -c CCPBioSim \ + -c conda-forge \ + --override-channel test -f "$PKG_PATH" + echo "Built: $PKG_PATH" - name: Upload to Anaconda shell: bash -l {0}