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:
parent
f73fc5b658
commit
ea0b975d6a
|
@ -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 }}'
|
||||
|
||||
|
|
Loading…
Reference in New Issue