Skip to content

Commit 02197a3

Browse files
committed
fix(ci): update apt cache on linux runner
1 parent 675475d commit 02197a3

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

.fleet/run.json

Lines changed: 0 additions & 10 deletions
This file was deleted.

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ jobs:
3232

3333
- name: Install Linux deps
3434
if: runner.os == 'Linux'
35-
run: sudo apt-get install libgtk-3-dev libwebkit2gtk-4.0-dev
35+
run: |
36+
sudo apt-get update
37+
sudo apt-get install libgtk-3-dev libwebkit2gtk-4.0-dev
3638
3739
- name: Install NSIS
3840
if: runner.os == 'Windows'

0 commit comments

Comments
 (0)