Skip to content

Commit 948d4c8

Browse files
committed
Add GitHub action to create GitHub releases
1 parent 9668c96 commit 948d4c8

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: Create github release
3+
4+
on:
5+
push:
6+
tags:
7+
- '*'
8+
9+
jobs:
10+
release:
11+
runs-on: ubuntu-24.04
12+
name: Create GitHub release
13+
if: ${{ github.repository_owner == 'voxpupuli' }}
14+
steps:
15+
- name: Create Release Page
16+
shell: bash
17+
env:
18+
GH_TOKEN: ${{ github.token }}
19+
run: gh release create ${{ github.ref_name }} --generate-notes

0 commit comments

Comments
 (0)