From 4bdd9031910779b6db80e288b91d19e65b5ca340 Mon Sep 17 00:00:00 2001 From: Benjamin Kiessling Date: Sun, 21 Apr 2024 14:27:11 +0200 Subject: [PATCH] hope that's it --- .github/workflows/test.yml | 33 ++++++++++++++++----------------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 58f75adfa..955da228d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -78,24 +78,23 @@ jobs: - name: install dependencies build shell: bash -l {0} run: mamba install colorama pip ruamel ruamel.yaml rich jsonschema conda-verify anaconda-client - # Runs the action with the following inputs or defaults if not specified. - # - name: Build linux-64 conda package - # uses: prefix-dev/rattler-build-action@v0.2.6 - # with: - # recipe-path: "conda/recipe.yaml" - # build-args: "--experimental --target-platform linux-64" - # - name: Build osx-64 conda package - # uses: prefix-dev/rattler-build-action@v0.2.6 - # with: - # recipe-path: "conda/recipe.yaml" - # build-args: "--experimental --target-platform osx-64" - # - name: Build osx-arm64 conda package - # uses: prefix-dev/rattler-build-action@v0.2.6 - # with: - # recipe-path: "conda/recipe.yaml" - # build-args: "--experimental --target-platform osx-arm64" + - name: Build linux-64 conda package + uses: prefix-dev/rattler-build-action@v0.2.6 + with: + recipe-path: "conda/recipe.yaml" + build-args: "--experimental --target-platform linux-64" + - name: Build osx-64 conda package + uses: prefix-dev/rattler-build-action@v0.2.6 + with: + recipe-path: "conda/recipe.yaml" + build-args: "--experimental --target-platform osx-64" + - name: Build osx-arm64 conda package + uses: prefix-dev/rattler-build-action@v0.2.6 + with: + recipe-path: "conda/recipe.yaml" + build-args: "--experimental --target-platform osx-arm64" - name: Upload conda package - - run: | + run: | for pkg in $(find output -type f \( -name "*.conda" -o -name "*.tar.bz2" \) ); do echo "Uploading ${pkg}" rattler-build upload anaconda -o mittagessen -a ${{ secrets.ANACONDA_TOKEN }} "${pkg}"