Skip to content

Commit

Permalink
Merge pull request #8 from jgarber623/add-release-workflow
Browse files Browse the repository at this point in the history
Add Release GitHub Actions workflow
  • Loading branch information
rmosolgo authored Feb 8, 2024
2 parents b177b19 + 12f69f4 commit 679ad50
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Release

on:
release:
types: [published]

jobs:
release:
name: Release to RubyGems
permissions:
contents: write
id-token: write
runs-on: ubuntu-latest
steps:
- uses: actions/checout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ruby
- uses: rubygems/release-gem@v1

0 comments on commit 679ad50

Please sign in to comment.