From bac545cf3dff3215ceccb898028fcda2b6a6e70f Mon Sep 17 00:00:00 2001 From: Ajitem Sahasrabuddhe Date: Fri, 6 Dec 2019 10:18:30 +0530 Subject: [PATCH] fix macos typo --- .github/workflows/cli.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cli.yml b/.github/workflows/cli.yml index 8ac3f80..d4f9cdb 100644 --- a/.github/workflows/cli.yml +++ b/.github/workflows/cli.yml @@ -44,12 +44,12 @@ jobs: npm install markdown-toc - name: Install Dependencies (Mac) - if: matrix.os == 'ubuntu-latest' - run: | - mkdir -p $GOPATH/bin - curl -s https://api.github.com/repos/urfave/gfmrun/releases/latest | grep gfmrun-darwin-amd64 | grep download | cut -d '"' -f 4 | wget -O $GOPATH/bin/gfmrun -i - - chmod +x $GOPATH/bin/gfmrun - npm install markdown-toc + if: matrix.os == 'macos-latest' + run: | + mkdir -p $GOPATH/bin + curl -s https://api.github.com/repos/urfave/gfmrun/releases/latest | grep gfmrun-darwin-amd64 | grep download | cut -d '"' -f 4 | wget -O $GOPATH/bin/gfmrun -i - + chmod +x $GOPATH/bin/gfmrun + npm install markdown-toc - name: Run Tests (v1) if: contains(github.base_ref, 'v1')