We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 53f4652 + 97525ed commit b8b259fCopy full SHA for b8b259f
.github/workflows/release.yml
@@ -0,0 +1,32 @@
1
+name: Release
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
7
+permissions:
8
+ contents: write
9
+ issues: write
10
+ pull-requests: write
11
12
+jobs:
13
+ release:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@v4
18
+ with:
19
+ fetch-depth: 0
20
21
+ - name: Set up Node.js
22
+ uses: actions/setup-node@v4
23
24
+ node-version: 22
25
26
+ - name: Install dependencies
27
+ run: npm ci
28
29
+ - name: Semantic Release
30
+ env:
31
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32
+ run: npx semantic-release
0 commit comments