Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
on:
Comment thread
almathew marked this conversation as resolved.
Comment thread
almathew marked this conversation as resolved.
release:
types: [published]

jobs:
push:
name: Push gem to RubyGems.org
runs-on: ubuntu-latest

permissions:
id-token: write
contents: write

steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
Comment thread
almathew marked this conversation as resolved.
with:
persist-credentials: false
- name: Set up Ruby
uses: ruby/setup-ruby@211ffaaa5f8dda97e9e8bca4e70d0fbaf2f8c41c
Comment thread
almathew marked this conversation as resolved.
with:
bundler-cache: false
ruby-version: "3.3"
Comment thread Fixed

- uses: rubygems/release-gem@1c162a739e8b4cb21a676e97b087e8268d8fc40b
Comment thread
almathew marked this conversation as resolved.