We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a05bef commit feaadbaCopy full SHA for feaadba
1 file changed
.github/workflows/release.yml
@@ -2,8 +2,8 @@ name: Ruby
2
3
on:
4
push:
5
- tags:
6
- - '[0-9]+.[0-9]+.[0-9]+'
+ branches:
+ - master
7
8
jobs:
9
release:
@@ -16,6 +16,10 @@ jobs:
16
ruby-version: 3.1
17
- name: Install dependencies
18
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"
23
- name: push to RubyGems
24
env:
25
GEM_HOST_API_KEY: ${{ secrets.GEM_HOST_API_KEY }}
0 commit comments