fix(ci): install imagemagick in runner

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:35:10 -08:00
parent f73fc5b658
commit e4c498ce02

View File

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