From d651e3d1b25c292a2bcf2d7023889b986c132727 Mon Sep 17 00:00:00 2001 From: mpw Date: Mon, 2 Oct 2023 21:38:59 -0300 Subject: [PATCH] pls read the string --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 99c3178..0f43533 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -43,7 +43,7 @@ jobs: run: echo "OS is ${{ matrix.os }}" - name: Install dependencies - if: ${{ matrix.os }} == ubuntu-latest + if: ${{ matrix.os }} == 'ubuntu-latest' run: | sudo apt-get update -y && \ sudo apt-get install -y --no-install-recommends \ @@ -60,13 +60,13 @@ jobs: brew install cmake gcc openssl@1.1 pkg-config protobuf - name: Install dependencies windows - if: ${{ matrix.os }} == windows-latest + if: ${{ matrix.os }} == 'windows-latest' run: | choco install cmake mingw openssl pkgconfiglite protoc - name: Get protoc from github releases - if: ${{ matrix.os }} == ubuntu-latest + if: ${{ matrix.os }} == 'ubuntu-latest' run: | sudo ./ci/get-protoc.sh