From 3bd8e538f47c5540f9833aa5b848296d3d1d33f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Paulev=C3=A9?= Date: Thu, 19 Oct 2023 15:33:09 +0200 Subject: [PATCH] disable conda packaging momentarily --- .github/workflows/release.yml | 38 +++++++++++++++++------------------ 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4ffaf9f..6272180 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,22 +24,22 @@ jobs: run: | python setup.py sdist bdist_wheel twine upload dist/* - conda-publish: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - run: sed -i "s:9999:${VERSION//*v/}:" setup.py conda/meta.yaml - env: - VERSION: ${{ github.ref }} - - uses: s-weigand/setup-conda@v1 - - name: prepare - run: | - conda install -y anaconda-client conda-build conda-verify - conda config --set channel_priority strict - conda config --set anaconda_upload yes - - name: build - run: | - cd conda - conda build --user colomoto --token $ANACONDA_TOKEN -c conda-forge . - env: - ANACONDA_TOKEN: ${{ secrets.ANACONDA_TOKEN }} +# conda-publish: +# runs-on: ubuntu-latest +# steps: +# - uses: actions/checkout@v2 +# - run: sed -i "s:9999:${VERSION//*v/}:" setup.py conda/meta.yaml +# env: +# VERSION: ${{ github.ref }} +# - uses: s-weigand/setup-conda@v1 +# - name: prepare +# run: | +# conda install -y anaconda-client conda-build conda-verify +# conda config --set channel_priority strict +# conda config --set anaconda_upload yes +# - name: build +# run: | +# cd conda +# conda build --user colomoto --token $ANACONDA_TOKEN -c conda-forge . +# env: +# ANACONDA_TOKEN: ${{ secrets.ANACONDA_TOKEN }}