From 45ac47ba1618a7e220b14b1179957860d95cb42f Mon Sep 17 00:00:00 2001 From: Jan Clemens Date: Wed, 6 Nov 2024 12:43:29 +0100 Subject: [PATCH] Update publish.yml --- .github/workflows/publish.yml | 31 +++---------------------------- 1 file changed, 3 insertions(+), 28 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b5c4a3d..df400d5 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -36,6 +36,7 @@ jobs: shell: bash -l {0} steps: - uses: actions/checkout@v4 + - name: Setup miniconda # https://github.com/marketplace/actions/setup-miniconda uses: conda-incubator/setup-miniconda@v3 with: @@ -46,25 +47,11 @@ jobs: activate-environment: anaconda-client-env environment-file: build_env.yml condarc-file: condarc.yml + - name: Build (${{ matrix.os }}) run: | mkdir ./build conda build conda/${{ matrix.folder}} --no-anaconda-upload --python ${{ matrix.python-version }} --output-folder ./build - # - name: Build (Ubuntu) - # if: matrix.os == 'ubuntu-latest' - # run: | - # mkdir ./build - # conda build conda/das-ubuntu --no-anaconda-upload --python ${{ matrix.python-version }} --output-folder ./build - # - name: Build (Windows) - # if: matrix.os == 'windows-latest' - # run: | - # mkdir ./build - # conda build conda/das-win --no-anaconda-upload --python ${{ matrix.python-version }} --output-folder ./build - # - name: Build (Mac arm) - # if: matrix.os == 'macOS-14' - # run: | - # mkdir ./build - # conda build conda/das-osxarm --no-anaconda-upload --python ${{ matrix.python-version }} --output-folder ./build - name: Test run: | @@ -78,16 +65,4 @@ jobs: - name: Upload (${{ matrix.os }}) run: | conda build conda/${{ matrix.folder }} --no-test --python ${{ matrix.python-version }} --output-folder ./build --user ncb --token ${{ secrets.ANACONDA_TOKEN }} - - # - name: Upload (Ubuntu) - # if: matrix.os == 'ubuntu-latest' - # run: | - # conda build conda/das-ubuntu --no-test --python ${{ matrix.python-version }} --output-folder ./build --user ncb --token ${{ secrets.ANACONDA_TOKEN }} - # - name: Upload (Windows) - # if: matrix.os == 'windows-latest' - # run: | - # conda build conda/das-win --no-test --python ${{ matrix.python-version }} --output-folder ./build --user ncb --token ${{ secrets.ANACONDA_TOKEN }} - # - name: Upload (Mac arm) - # if: matrix.os == 'macOS-14' - # run: | - # conda build conda/das-osxarm --no-test --python ${{ matrix.python-version }} --output-folder ./build --user ncb --token ${{ secrets.ANACONDA_TOKEN }} +