We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2af1fe3 commit 2141dc8Copy full SHA for 2141dc8
.github/workflows/docs.yml
@@ -19,10 +19,16 @@ jobs:
19
access_token: ${{ github.token }}
20
workflow_id: 1778578
21
- uses: actions/checkout@v2
22
- - uses: actions/setup-ruby@v1
23
- - name: Bundler Install
+ - uses: actions/cache@v2
+ with:
24
+ path: vendor/bundle
25
+ key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
26
+ restore-keys: |
27
+ ${{ runner.os }}-gems-
28
+ - name: Install Bundler
29
run: |
30
gem install bundler
31
+ bundle config path vendor/bundle
32
bundle install --jobs 4 --retry 3
33
- name: Generate Jazzy Docs
34
run: jazzy
0 commit comments