Skip to content

Commit 772da85

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

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,10 @@ jobs:
3030
- name: Checkout code
3131
uses: actions/checkout@v4
3232

33-
- name: Install vips
34-
run: sudo apt install -y --no-install-recommends libvips
33+
- name: Install 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)