From 8a60710c068be69876153b9fdf7c9e01f1f134c2 Mon Sep 17 00:00:00 2001 From: Roland Kaminski Date: Thu, 20 Jun 2024 19:13:10 +0200 Subject: [PATCH] test --- .github/workflows/conda-dev.yml | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/.github/workflows/conda-dev.yml b/.github/workflows/conda-dev.yml index eecd4717..f623a229 100644 --- a/.github/workflows/conda-dev.yml +++ b/.github/workflows/conda-dev.yml @@ -16,9 +16,9 @@ jobs: fail-fast: false matrix: os: - - ubuntu-latest + #- ubuntu-latest - macos-latest - - windows-latest + #- windows-latest python-version: ['3.8'] steps: @@ -70,3 +70,21 @@ jobs: python .github/conda.py --release env: ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_TOKEN }} + + - name: publish conda package (wip) + if: ${{ github.event.inputs.wip == 'true' && matrix.os == 'macos-latest' }} + shell: pwsh + run: | + python .github/conda.py + env: + CONDA_SUBDIR: osx-64 + ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_TOKEN }} + + - name: publish conda package (release) + if: ${{ github.event.inputs.wip == 'false' && matrix.os == 'macos-latest' }} + shell: pwsh + run: | + python .github/conda.py --release + env: + CONDA_SUBDIR: osx-64 + ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_TOKEN }}