From d5fcc88131321fe441fa0b17650ab981c558f03a Mon Sep 17 00:00:00 2001 From: Thomas-Otavio Peulen Date: Sun, 4 Feb 2024 15:33:17 +0100 Subject: [PATCH] Conda build on release --- .github/workflows/conda-release.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/conda-release.yml b/.github/workflows/conda-release.yml index e0c5e49..2d8194b 100644 --- a/.github/workflows/conda-release.yml +++ b/.github/workflows/conda-release.yml @@ -16,7 +16,7 @@ jobs: fail-fast: false matrix: os: ["ubuntu-latest", "macos-latest", "windows-latest"] - python-version: ["3.8", "3.10"] + python-version: ["3.8", "3.9", "3.10"] steps: - name: Checkout Repository uses: actions/checkout@v2 @@ -43,6 +43,10 @@ jobs: shell: bash -el {0} run: | mamba install conda-build boa anaconda-client - conda mambabuild conda-recipe - anaconda -t ${{ secrets.ANACONDA_TOKEN }} upload -u tpeulen --force /usr/local/miniconda/envs/test/conda-bld/**/*.tar.bz2 + conda mambabuild conda-recipe --output-folder conda-bld + + - name: Upload Conda Package + shell: bash -el {0} + run: | + anaconda -t ${{ secrets.ANACONDA_TOKEN }} upload -u tpeulen --force conda-bld/**/*.tar.bz2