explicitly install imagemagick to support ubuntu-latest (>=24.04) in Github actions (#2906)
Install `imagemagick` within `Install and Build 🔧` step of Github actions Relevant issue: [#2902](https://github.com/alshedivat/al-folio/issues/2902) `convert` Command Not Found on Ubuntu 24.04 Reason: `ubuntu-latest` in Github actions is pointed to `ubuntu-24.04` now, in which `imagemagick` is no longer pre-installed. See [this](https://github.com/actions/runner-images/issues/10772). Modified files (actions) recommended by @george-gca ``` - .github/workflows/deploy.yml - .github/workflows/broken-links-site.yml - .github/workflows/axe.yml ```
This commit is contained in:
parent
cc0cb3c426
commit
ec7d7c34e8
1
.github/workflows/axe.yml
vendored
1
.github/workflows/axe.yml
vendored
@ -43,6 +43,7 @@ jobs:
|
||||
}
|
||||
- name: Install and Build 🔧
|
||||
run: |
|
||||
sudo apt-get update && sudo apt-get install -y imagemagick
|
||||
pip3 install --upgrade jupyter
|
||||
export JEKYLL_ENV=production
|
||||
bundle exec jekyll build
|
||||
|
||||
1
.github/workflows/broken-links-site.yml
vendored
1
.github/workflows/broken-links-site.yml
vendored
@ -31,6 +31,7 @@ jobs:
|
||||
}
|
||||
- name: Install and Build 🔧
|
||||
run: |
|
||||
sudo apt-get update && sudo apt-get install -y imagemagick
|
||||
pip3 install --upgrade jupyter
|
||||
export JEKYLL_ENV=production
|
||||
bundle exec jekyll build
|
||||
|
||||
1
.github/workflows/deploy.yml
vendored
1
.github/workflows/deploy.yml
vendored
@ -86,6 +86,7 @@ jobs:
|
||||
value: ${{ github.repository }}
|
||||
- name: Install and Build 🔧
|
||||
run: |
|
||||
sudo apt-get update && sudo apt-get install -y imagemagick
|
||||
pip3 install --upgrade nbconvert
|
||||
export JEKYLL_ENV=production
|
||||
bundle exec jekyll build
|
||||
|
||||
Loading…
Reference in New Issue
Block a user