From d8ff4839fbf7bcccc272315106f2eb71dd39a1c7 Mon Sep 17 00:00:00 2001 From: Jarod42 Date: Tue, 15 Oct 2024 15:01:56 +0200 Subject: [PATCH] [CI] Fix workflows/build.yaml --- .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 ebc0eeb..a0d9151 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -5,7 +5,9 @@ jobs: Build-GuiSan: runs-on: ubuntu-latest steps: - - run: sudo apt install build-essential libsdl2-dev libsdl2-ttf-dev libsdl2-image-dev libsdl2-mixer-dev scons + - run: | + sudo apt update + sudo apt install build-essential libsdl2-dev libsdl2-ttf-dev libsdl2-image-dev libsdl2-mixer-dev scons - name: Check out repository code uses: actions/checkout@v4 - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."