Skip to content

Commit f97607b

Browse files
authored
Create GitHub release when new release tag is pushed (#1354)
1 parent 4c93d8f commit f97607b

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

Diff for: .github/workflows/release.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Create release from new tag
2+
3+
# this flow will be run only when new tags are pushed that match our pattern
4+
on:
5+
push:
6+
tags:
7+
- "v[0-9]+.[0-9]+.[0-9]+"
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
permissions:
13+
contents: write
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v3
17+
18+
- name: Create GitHub release from tag
19+
uses: softprops/action-gh-release@v1

0 commit comments

Comments
 (0)