Skip to content

Commit 52fb951

Browse files
committed
CI: run apt-get update before installing libvips
1 parent 1411b03 commit 52fb951

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ jobs:
3131
uses: actions/checkout@v4
3232

3333
- name: Install vips
34-
run: sudo apt install -y --no-install-recommends libvips
34+
run: |
35+
sudo apt-get update
36+
sudo apt-get install --no-install-recommends libvips
3537
3638
- name: Install composer dependencies
3739
run: |

0 commit comments

Comments
 (0)