From c79391c2f3f7a6cc730eb1cd19e997e6791b0c01 Mon Sep 17 00:00:00 2001 From: Arkadiusz <100430787+DonNagual@users.noreply.github.com> Date: Fri, 30 Aug 2024 12:09:23 +0200 Subject: [PATCH] Update build.yaml - add 'shell: bash' and a '|'-or This should enable the creation of an .exe file in GitHub --- .github/workflows/build.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 6e1b4fa1..32e912df 100755 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -45,7 +45,9 @@ jobs: - name: Install cpprestsdk if: ${{ !contains(matrix.os, 'windows' ) }} - run: sudo apt-get install -y libcpprest-dev + shell: bash + run: | + sudo apt-get install -y libcpprest-dev - name: setup prerequisites