Skip to content

Commit b87715d

Browse files
committed
Add release workflow
1 parent 16fa077 commit b87715d

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/release_gem.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Release
3+
4+
on: # yamllint disable-line rule:truthy
5+
push:
6+
# Pattern matched against refs/tags
7+
tags:
8+
- '**'
9+
10+
jobs:
11+
release:
12+
name: Release gem
13+
uses: theforeman/actions/.github/workflows/release-gem.yml@v0
14+
with:
15+
allowed_owner: theforeman
16+
secrets:
17+
api_key: ${{ secrets.RUBYGEM_API_KEY }}

0 commit comments

Comments
 (0)