From 78cb7287690d1579a4e4d984c579e1367414900f Mon Sep 17 00:00:00 2001 From: Thomas von Deyen Date: Tue, 23 Dec 2025 18:19:52 +0100 Subject: [PATCH] Pass rubygems_api_key secret to release workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The reusable release workflow requires the RUBYGEMS_API_KEY secret to publish gems to RubyGems. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3e3e007..71f02f4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,3 +16,4 @@ jobs: secrets: app_id: ${{ vars.ALCHEMY_BOT_APP_ID }} app_private_key: ${{ secrets.ALCHEMY_BOT_APP_PRIVATE_KEY }} + rubygems_api_key: ${{ secrets.RUBYGEMS_API_KEY }}