We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0384849 commit 1b20514Copy full SHA for 1b20514
.github/workflows/build.yml
@@ -34,6 +34,7 @@ jobs:
34
ruby-version: '3.3'
35
- name: Install dependencies
36
run: |
37
+ apt-get install imagemagick
38
bundle config set --local path '.bundle/gems'
39
bundle install
40
- name: Build with Middleman
.github/workflows/middleman_deploy.yml
@@ -48,7 +48,10 @@ jobs:
48
key: ${{ runner.os }}-source-build
49
path: __source_build
50
51
- run: bundle install
+ run: |
52
53
+ bundle config set --local path '.bundle/gems'
54
+ bundle install
55
56
57
mkdir -p __source_build
0 commit comments