Skip to content

Commit feaadba

Browse files
committed
Fix release action
1 parent 2a05bef commit feaadba

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Ruby
22

33
on:
44
push:
5-
tags:
6-
- '[0-9]+.[0-9]+.[0-9]+'
5+
branches:
6+
- master
77

88
jobs:
99
release:
@@ -16,6 +16,10 @@ jobs:
1616
ruby-version: 3.1
1717
- name: Install dependencies
1818
run: bundle install
19+
- name: Configure Git
20+
run: |
21+
git config user.email "101073+guilhermef@users.noreply.github.com"
22+
git config user.name "GH actions"
1923
- name: push to RubyGems
2024
env:
2125
GEM_HOST_API_KEY: ${{ secrets.GEM_HOST_API_KEY }}

0 commit comments

Comments
 (0)