Skip to content

Commit 8abd0d3

Browse files
committed
run apt-get update for GH linux
1 parent b983f55 commit 8abd0d3

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ jobs:
2424
submodules: true
2525

2626
- name: install packages (linux)
27-
run: sudo apt-get install ninja-build libsdl2-dev
27+
run: |
28+
sudo apt-get update
29+
sudo apt-get install ninja-build libsdl2-dev
2830
if: matrix.os == 'ubuntu-latest'
2931

3032
- name: install packages (macos)

.github/workflows/build_release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ jobs:
2424
submodules: true
2525

2626
- name: install packages (linux)
27-
run: sudo apt-get install ninja-build libsdl2-dev
27+
run: |
28+
sudo apt-get update
29+
sudo apt-get install ninja-build libsdl2-dev
2830
if: matrix.os == 'ubuntu-latest'
2931

3032
- name: install packages (macos)

0 commit comments

Comments
 (0)