fix(ci): install imagemagick in runner (#392)

The latest runner image, ubuntu-24.04 does not have imagemagick
installed. (The previous image, ubuntu-22.04, did.)
This commit is contained in:
Jeff Dairiki 2025-01-06 20:42:03 -08:00 committed by GitHub
parent f73fc5b658
commit ea0b975d6a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 0 deletions

View File

@ -39,6 +39,11 @@ jobs:
python -m pip install --upgrade pip setuptools python -m pip install --upgrade pip setuptools
python -m pip install lektor python -m pip install lektor
- name: Install Imagemagick
run: |
sudo apt-get update
sudo apt-get install -y imagemagick
- name: Build lektor website - name: Build lektor website
run: lektor build -f webpack -O '${{ env.OUTPUT }}' run: lektor build -f webpack -O '${{ env.OUTPUT }}'