We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72ba2fd commit be02507Copy full SHA for be02507
1 file changed
.github/workflows/tag.yml
@@ -0,0 +1,22 @@
1
+name: Tag
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - 'v*'
7
8
+jobs:
9
10
+ tag:
11
+ name: Tag
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Create Github Release
15
+ uses: actions/create-release@v1
16
+ env:
17
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18
+ with:
19
+ tag_name: ${{ github.ref }}
20
+ release_name: ${{ github.ref }}
21
+ body_path: docs/releases/${{ env.TAG }}.md
22
0 commit comments