Skip to content

Commit

Permalink
Update Ruby example in documentation to specify bundler path (#113)
Browse files Browse the repository at this point in the history
* Update Ruby example to specify bundler path

* Fix spacing
  • Loading branch information
Evan Cloutier authored and Josh Gross committed Nov 23, 2019
1 parent 95c1798 commit 3d01b4e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,14 @@ Replace `~/.cache/pip` with the correct `path` if not using Ubuntu.
restore-keys: |
${{ runner.os }}-gem-
```
When dependencies are installed later in the workflow, we must specify the same path for the bundler.

```yaml
- name: Bundle install
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
```

## Rust - Cargo

Expand Down

0 comments on commit 3d01b4e

Please sign in to comment.