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 38a4928 commit c779b10Copy full SHA for c779b10
.github/workflows/release.yml
@@ -0,0 +1,27 @@
1
+name: Release
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - 'v*'
7
8
+jobs:
9
+ release:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v3
13
+ with:
14
+ fetch-depth: 0
15
16
+ - name: Install pnpm
17
+ uses: pnpm/action-setup@v2
18
19
+ - name: Set node
20
+ uses: actions/setup-node@v3
21
22
+ node-version: 16.x
23
+ cache: pnpm
24
25
+ - run: npx changelogithub
26
+ env:
27
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
0 commit comments