Change the bundle cache path on gh-actions
ubuntu-latest changed from 18.04 TLS to 20.04 LTS causes a file path change to the `ffi` gem, invalidating the gh-actions cache file, and causes the build to fail. See: <https://github.com/ffi/ffi/issues/769>
This commit is contained in:
parent
d2bb423220
commit
3400568b09
2 changed files with 2 additions and 2 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -25,7 +25,7 @@ jobs:
|
|||
os: [ubuntu-latest, macos-latest]
|
||||
|
||||
env:
|
||||
GEMS_PATH: ~/vendor/bundle
|
||||
GEMS_PATH: vendor/bundle
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
|
2
.github/workflows/pages-deploy.yml.hook
vendored
2
.github/workflows/pages-deploy.yml.hook
vendored
|
@ -14,7 +14,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
|
||||
env:
|
||||
GEMS_PATH: ~/vendor/bundle
|
||||
GEMS_PATH: vendor/bundle
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
|
Loading…
Reference in a new issue