Skip to content

Commit 4bbae4c

Browse files
committed
Add a "Create a GitHub release" workflow on git tag
Signed-off-by: tdruez <tdruez@nexb.com>
1 parent be69184 commit 4bbae4c

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/gh-release.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Create a GitHub release
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
tags:
7+
- "v*.*.*"
8+
9+
jobs:
10+
create-github-release:
11+
runs-on: ubuntu-22.04
12+
13+
steps:
14+
- name: Create a GitHub release
15+
uses: softprops/action-gh-release@v1
16+
with:
17+
draft: false

0 commit comments

Comments
 (0)