From cf05ac36454f148ebfe28b2f39cc177ad23e1179 Mon Sep 17 00:00:00 2001 From: Faylixe Date: Mon, 7 Dec 2020 13:04:54 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20=20fix=20build=20command?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/conda.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/conda.yml b/.github/workflows/conda.yml index 0a01524..3db6e70 100644 --- a/.github/workflows/conda.yml +++ b/.github/workflows/conda.yml @@ -18,8 +18,9 @@ jobs: uses: actions/setup-python@v2 with: python-version: 3.8 - - name: Build package - run: $CONDA/bin/conda build conda/${{ matrix.package }}/meta.yaml -c anaconda - name: Install dependencies run: | - $CONDA/bin/conda install anaconda-client \ No newline at end of file + $CONDA/bin/conda install conda-build + $CONDA/bin/conda install anaconda-client + - name: Build package + run: $CONDA/bin/conda build conda/${{ matrix.package }} -c anaconda