Skip to content

Commit

Permalink
Add pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Alwinator committed Nov 4, 2021
1 parent 5a32ce3 commit 6428075
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/publish_gem.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Publish Gem

on:
push:
branches:
- "*"
tags:
- v*
jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Release Gem
if: contains(github.ref, 'refs/tags/v')
uses: dawidd6/[email protected]
with:
api_key: ${{secrets.RUBYGEMS_API_KEY}}

0 comments on commit 6428075

Please sign in to comment.