Skip to content

Commit fda06d6

Browse files
committed
Add action to further automate releasing flow
1 parent 5a4c056 commit fda06d6

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
permissions:
9+
contents: write
10+
11+
jobs:
12+
release:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Create GitHub release
16+
env:
17+
GH_TOKEN: ${{ github.token }}
18+
run: gh release create "${{ github.ref_name }}" --generate-notes --repo "${{ github.repository }}"

0 commit comments

Comments
 (0)