Skip to content

Commit 39e5f04

Browse files
authored
Add step to install dependencies in release workflow (#730)
Sorry, I made a mistake in the previous PR because I had assumed that `bundler-cache: false` would still install dependencies. Apparently, it does not. So we have to install them explicitly (while continuing to not do caching, to protect against cache poisoning).
1 parent 16c9eb1 commit 39e5f04

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/push_gem.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ jobs:
2929
with:
3030
bundler-cache: false
3131
ruby-version: ruby
32+
- name: Install dependencies
33+
run: bundle install
3234
- name: Release
3335
run: bundle exec rake release
3436
- name: Wait for release to propagate

0 commit comments

Comments
 (0)