From 1859fca150a05051ba46b004b5ca25a23977d87a Mon Sep 17 00:00:00 2001 From: Oleg Kalachev Date: Thu, 24 Apr 2025 18:38:08 +0300 Subject: [PATCH] Update APT before installing libsdl2-dev --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1db55d4..d235816 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -56,7 +56,7 @@ jobs: - name: Install Gazebo run: curl -sSL http://get.gazebosim.org | sh - name: Install SDL2 - run: apt-get install libsdl2-dev + run: apt-get update && apt-get install libsdl2-dev - name: Build simulator run: make build_simulator - uses: actions/upload-artifact@v4