Skip to content

Commit

Permalink
Merge pull request #9 from RoleModel/add-release-workflow
Browse files Browse the repository at this point in the history
add release workflow
  • Loading branch information
mikehale authored Sep 20, 2024
2 parents 45fd885 + 67878f4 commit eb1652f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Release to RubyGems.org

jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- '3.3.4'

permissions:
contents: write
id-token: write

steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- uses: rubygems/release-gem@v1

0 comments on commit eb1652f

Please sign in to comment.