Skip to content

Commit bd60c36

Browse files
committed
Add github-release action (close #304)
1 parent 9cffbe0 commit bd60c36

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Create GitHub release
2+
on:
3+
push:
4+
tags:
5+
- '[0-9]+.[0-9]+.[0-9]+'
6+
- '[0-9]+.[0-9]+.[0-9]+[a-c][0-9]+'
7+
- '[0-9]+.[0-9]+.[0-9]+alpha[0-9]+'
8+
- '[0-9]+.[0-9]+.[0-9]+beta[0-9]+'
9+
- '[0-9]+.[0-9]+.[0-9]+rc[0-9]+'
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
- name: Release
18+
uses: softprops/action-gh-release@v1

0 commit comments

Comments
 (0)