Skip to content

Commit

Permalink
Add release file
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhermef committed Jan 28, 2022
1 parent 0477ea8 commit 9c815a5
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Ruby

on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'

jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
- name: Install dependencies
run: bundle install
- name: push to RubyGems
env:
GEM_HOST_API_KEY: ${{ secrets.GEM_HOST_API_KEY }}
run: bundle exec rake release

0 comments on commit 9c815a5

Please sign in to comment.