Skip to content

Commit

Permalink
Install imagemagick in github workflows
Browse files Browse the repository at this point in the history
It is not included in ubuntu-24.04 image anymore
  • Loading branch information
DanielKuhn committed Oct 9, 2024
1 parent cb9a10c commit da679ba
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/reusable-workflow-rspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@ jobs:

# Dependencies

- name: Install imagemagick package for image processing
run: |
sudo apt-get update
sudo apt-get install imagemagick
- name: Install libvips package for image processing
run: |
sudo apt-get update
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,11 @@ jobs:

# Dependencies

- name: Install imagemagick package for image processing
run: |
sudo apt-get update
sudo apt-get install imagemagick
- name: Install libvips package for image processing
run: |
sudo apt-get update
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,11 @@ jobs:

# Dependencies

- name: Install imagemagick package for image processing
run: |
sudo apt-get update
sudo apt-get install imagemagick
- name: Install libvips package for image processing
run: |
sudo apt-get update
Expand Down

0 comments on commit da679ba

Please sign in to comment.