Skip to content

Commit 60f3af9

Browse files
committed
chore: add releaser
1 parent 2a840c1 commit 60f3af9

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+
on:
3+
push:
4+
tags:
5+
- 'v[0-9]+.[0-9]+.[0-9]+'
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
contents: write
12+
name: Release Creation
13+
steps:
14+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
15+
- uses: ncipollo/release-action@bcfe5470707e8832e12347755757cec0eb3c22af # v1.18.0
16+
with:
17+
bodyFile: 'CHANGELOG.md'
18+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)