Skip to content

Commit

Permalink
Add GitHub workflow to publish gems on tag push
Browse files Browse the repository at this point in the history
  • Loading branch information
abevoelker committed Aug 29, 2023
1 parent de7aa8e commit 603934c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/publish_gem.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: publish_gem

on:
push:
tags:
- '*'

---

- name: Publish gem
uses: dawidd6/action-publish-gem@v1
with:
# Optional, will publish to RubyGems if specified
api_key: ${{secrets.RUBYGEMS_API_KEY}}
# Optional, will publish to GitHub Packages if specified
github_token: ${{secrets.GITHUB_TOKEN}}

0 comments on commit 603934c

Please sign in to comment.