Skip to content

Commit

Permalink
Fix release action
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhermef committed Jan 28, 2022
1 parent 2a05bef commit feaadba
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Ruby

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

jobs:
release:
Expand All @@ -16,6 +16,10 @@ jobs:
ruby-version: 3.1
- name: Install dependencies
run: bundle install
- name: Configure Git
run: |
git config user.email "101073+guilhermef@users.noreply.github.com"
git config user.name "GH actions"
- name: push to RubyGems
env:
GEM_HOST_API_KEY: ${{ secrets.GEM_HOST_API_KEY }}
Expand Down

0 comments on commit feaadba

Please sign in to comment.