From 5aff385ad0a58aa0cee4242260aa871740eeb3ec Mon Sep 17 00:00:00 2001 From: Faylixe Date: Mon, 7 Dec 2020 12:53:41 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20=20revert=20to=20local=20minicon?= =?UTF-8?q?da?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/conda.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/conda.yml b/.github/workflows/conda.yml index 9dd703a..ecbecef 100644 --- a/.github/workflows/conda.yml +++ b/.github/workflows/conda.yml @@ -14,14 +14,13 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: goanpeca/setup-miniconda@v1 + - name: Set up Python 3.8 + uses: actions/setup-python@v2 with: python-version: 3.8 - name: Install dependencies - shell: bash -l {0} run: | - conda install conda-build - conda install anaconda-client + $CONDA/bin/conda install conda-build + $CONDA/bin/conda install anaconda-client - name: Build package - shell: bash -l {0} - run: cd conda/${{ matrix.platform }} && conda-build spleeter + run: cd conda/${{ matrix.platform }} && $CONDA/bin/conda-build spleeter