We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77a043d commit 2cf84feCopy full SHA for 2cf84fe
.github/workflows/build.yml
@@ -18,12 +18,24 @@ jobs:
18
steps:
19
- name: Checkout
20
uses: actions/checkout@v4
21
+ - name: Setup bundler cache
22
+ uses: actions/cache@v3
23
+ with:
24
+ key: ${{ runner.os }}-bundler-${{ hashFiles('Gemfile.lock') }}
25
+ path: .bundle/gems
26
+ - name: Setup build cache
27
28
29
+ key: ${{ runner.os }}-build
30
+ path: __build
31
- name: Setup Ruby
32
uses: ruby/setup-ruby@v1
33
with:
34
ruby-version: '3.3'
35
- name: Install dependencies
- run: bundle install
36
+ run: |
37
+ bundle config set --local path '.bundle/gems'
38
+ bundle install
39
- name: Build with Middleman
40
run: |
41
mkdir __build
0 commit comments