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