Skip to content

Commit be02507

Browse files
authored
Add Github Action to create a release (#11)
1 parent 72ba2fd commit be02507

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/tag.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)