Skip to content

Commit

Permalink
Add the publish-gem-release workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcfadden committed Jan 29, 2024
1 parent 4026402 commit c48d51f
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 c48d51f

Please sign in to comment.