From 5e5f0ab86c2795e1606498cfa5ecd24969222167 Mon Sep 17 00:00:00 2001 From: Bradley Bell Date: Sat, 17 Jul 2021 00:47:33 -0700 Subject: [PATCH] fix --- .github/workflows/c-cpp.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index df3e8a5d..43c1a096 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -7,7 +7,7 @@ on: branches: [ main ] jobs: - linux: + build: strategy: matrix: os: [ubuntu-latest, macos-latest] @@ -20,10 +20,10 @@ jobs: steps: - uses: actions/checkout@v2 - name: linux dependencies - if: ${{ env.RUNNER_OS == 'Linux' }} + if: ${{ runner.os == 'Linux' }} run: sudo apt-get install -y libphysfs-dev libsdl1.2-dev libsdl-mixer1.2-dev libsdl-image1.2-dev - name: macos dependencies - if: ${{ env.RUNNER_OS == 'macOS' }} + if: ${{ runner.os == 'macOS' }} run: brew install physfs sdl sdl_mixer sdl_image - name: autogen run: ./autogen.sh -- 2.39.2