From 7849fe64baa9ad3f1d2db9d44d61eb7b58dc9464 Mon Sep 17 00:00:00 2001 From: Matthias Kuhn Date: Mon, 21 Aug 2023 08:23:59 +0200 Subject: [PATCH] fix workflow --- .github/workflows/macos.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/macos.yaml b/.github/workflows/macos.yaml index b1bd572..7c102bc 100644 --- a/.github/workflows/macos.yaml +++ b/.github/workflows/macos.yaml @@ -48,10 +48,10 @@ jobs: - name: 📦 Package shell: pwsh run: | - curl -s https://api.github.com/repos/mamba-org/micromamba-releases/releases/latest | grep 'browser_download_url.*micromamba-${{ platform }}"' | cut -d : -f 2,3 | tr -d \" | wget -qi - + curl -s https://api.github.com/repos/mamba-org/micromamba-releases/releases/latest | grep 'browser_download_url.*micromamba-${{ matrix.platform }}"' | cut -d : -f 2,3 | tr -d \" | wget -qi - conda build constructor conda install /Users/runner/miniconda3/envs/constructor/conda-bld/osx-64/*.tar.bz2 - constructor --platform=${{ matrix.platform }} --conda-exe=micromamba-${{ platform }} . + constructor --platform=${{ matrix.platform }} --conda-exe=micromamba-${{ matrix.platform }} . - name: 📦 Upload artifacts uses: actions/upload-artifact@v3