From 021399970afe984d346dea48956d75946911e982 Mon Sep 17 00:00:00 2001 From: "arthur.jamet" Date: Thu, 20 May 2021 20:10:31 +0200 Subject: [PATCH] fix binary name --- .github/workflows/build.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b842a6a8..421a1450 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,9 +29,5 @@ jobs: cmake --build . - name: CheckBinaryName shell: bash - run: | - if [[ "${{runner.os}}" == "Windows" ]]; then - test -f build\bomberman.sln - else - test -f build/bomberman - fi \ No newline at end of file + if: matrix.name == 'Linux' + run: test -f build/bomberman \ No newline at end of file