We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c93d8f commit f97607bCopy full SHA for f97607b
.github/workflows/release.yml
@@ -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