From 3858ab9cb88c254a8141ef4385dca93c77df0013 Mon Sep 17 00:00:00 2001 From: Faylixe Date: Mon, 7 Dec 2020 12:44:41 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20=20fix=20conda=20install?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/conda.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/conda.yml b/.github/workflows/conda.yml index 7db0f2c..65c5137 100644 --- a/.github/workflows/conda.yml +++ b/.github/workflows/conda.yml @@ -14,15 +14,12 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Setup conda - uses: s-weigand/setup-conda@v1 + - uses: actions/setup-python@v2 with: - update-conda: true - python-version: ${{ matrix.python-version }} - conda-channels: anaconda, conda-forge + python-version: 3.8 - name: Setup conda-build - run: conda install conda-build + run: $CONDA/bin/conda install conda-build - name: Setup anaconda-client - run: conda install anaconda-client + run: $CONDA/bin/conda install anaconda-client - name: Build package - run: cd conda/${{ matrix.platform }} && conda-build spleeter + run: cd conda/${{ matrix.platform }} && $CONDA/bin/conda-build spleeter