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 3091f66 commit 86cc1b6Copy full SHA for 86cc1b6
.github/workflows/release.yml
@@ -0,0 +1,24 @@
1
+name: Release
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - 'v*'
7
8
+jobs:
9
+ release:
10
+ permissions:
11
+ contents: write
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ with:
16
+ fetch-depth: 0
17
18
+ - uses: actions/setup-node@v4
19
20
+ node-version: lts/*
21
22
+ - run: npx changelogithub
23
+ env:
24
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
0 commit comments