From d220ae4a55a3b923e20a4d85d24b55b514be6051 Mon Sep 17 00:00:00 2001 From: Persson-dev Date: Sat, 24 May 2025 12:55:28 +0200 Subject: [PATCH] ci: fix apt --- .github/workflows/ubuntu.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 8a2fbd5..3a73fbb 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -22,7 +22,9 @@ jobs: actions-cache-key: 'ubuntu' - name: Install SFML - run: apt install libsfml-dev + run: | + apt update + apt install -y libsfml-dev - name: XMake config run: xmake f -p linux -y