From 70a0722b4a3d48db523f91b502de7d8992e0b66d Mon Sep 17 00:00:00 2001 From: Connor Shea <2977353+connorshea@users.noreply.github.com> Date: Wed, 27 May 2026 17:46:19 -0600 Subject: [PATCH] Add step to install dependencies in release workflow 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). --- .github/workflows/push_gem.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/push_gem.yml b/.github/workflows/push_gem.yml index 2eacaaf6..153e186b 100644 --- a/.github/workflows/push_gem.yml +++ b/.github/workflows/push_gem.yml @@ -29,6 +29,8 @@ jobs: with: bundler-cache: false ruby-version: ruby + - name: Install dependencies + run: bundle install - name: Release run: bundle exec rake release - name: Wait for release to propagate