Skip to content

Commit

Permalink
Merge pull request #5 from planningcenter/bm/add-publish-gem
Browse files Browse the repository at this point in the history
Add the publish-gem-release workflow.
  • Loading branch information
mcfadden authored Jan 29, 2024
2 parents 4026402 + c48d51f commit 46374ed
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/publish-gem-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Publish Gem Release

on:
push:
tags:
- v*

jobs:
publish-release:
runs-on: ubuntu-latest

permissions:
contents: read
packages: write

steps:
- name: Checkout Code
uses: actions/checkout@v3
- uses: planningcenter/gh-action-publish-internal-gem@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 46374ed

Please sign in to comment.