Skip to content

fix: use Ruby 3.4 in push_gem workflow #2

fix: use Ruby 3.4 in push_gem workflow

fix: use Ruby 3.4 in push_gem workflow #2

Workflow file for this run

name: Push Gem
on:
push:
tags:
- v*
permissions:
contents: read
jobs:
push:
if: github.repository == 'protocollar/claude_agent-ruby'
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
# Requires "release" environment configured on RubyGems for Trusted Publishing
environment: release
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.4"
bundler-cache: true
- name: Publish to RubyGems
uses: rubygems/release-gem@v1