mirror of
https://github.com/lektor/lektor-website.git
synced 2025-04-02 00:11:50 +02:00
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:
parent
f73fc5b658
commit
e4c498ce02
5
.github/workflows/deploy.yml
vendored
5
.github/workflows/deploy.yml
vendored
@ -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 }}'
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user