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 34f8d82 commit 021a5c2Copy full SHA for 021a5c2
.github/workflows/release.yml
@@ -0,0 +1,26 @@
1
+name: release
2
+
3
+permissions:
4
+ contents: write
5
6
+on:
7
+ push:
8
+ tags:
9
+ - 'v*'
10
+ workflow_dispatch:
11
12
+jobs:
13
+ release:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ with:
18
+ fetch-depth: 0
19
20
+ - uses: actions/setup-node@v4
21
22
+ node-version: lts
23
24
+ - run: npx changelogithub
25
+ env:
26
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
.vscode/settings.json
@@ -31,6 +31,7 @@
31
"cSpell.words": [
32
"antfu",
33
"bumpp",
34
+ "changelogithub",
35
"commitlint",
36
"oxlint"
37
]
0 commit comments