Skip to content

Commit a126dd4

Browse files
committed
[Build] Add update of apt packages
1 parent f3c971c commit a126dd4

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,15 @@ jobs:
7070

7171
- name: Install MinGW-w64/GCC/G++ (Linux & Windows)
7272
if: matrix.os == 'ubuntu-latest'
73-
run: sudo apt install mingw-w64
73+
run: |
74+
sudo apt update
75+
sudo apt install mingw-w64
7476
7577
- name: FreeType - Install (Linux)
7678
if: matrix.os == 'ubuntu-latest' && matrix.type == 'linux' && matrix.freetype == true
77-
run: sudo apt install libfreetype6-dev
79+
run: |
80+
sudo apt update
81+
sudo apt install libfreetype6-dev
7882
7983
- name: FreeType - Install (Windows)
8084
if: matrix.os == 'ubuntu-latest' && matrix.type == 'windows' && matrix.freetype == true

0 commit comments

Comments
 (0)