Skip to content

Commit 1b20514

Browse files
committed
Manually install imagemagick
1 parent 0384849 commit 1b20514

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/build.yml

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ jobs:
3434
ruby-version: '3.3'
3535
- name: Install dependencies
3636
run: |
37+
apt-get install imagemagick
3738
bundle config set --local path '.bundle/gems'
3839
bundle install
3940
- name: Build with Middleman

.github/workflows/middleman_deploy.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,10 @@ jobs:
4848
key: ${{ runner.os }}-source-build
4949
path: __source_build
5050
- name: Install dependencies
51-
run: bundle install
51+
run: |
52+
apt-get install imagemagick
53+
bundle config set --local path '.bundle/gems'
54+
bundle install
5255
- name: Build with Middleman
5356
run: |
5457
mkdir -p __source_build

0 commit comments

Comments
 (0)