There was an error while loading. Please reload this page.
1 parent 3ae13b2 commit fb3d839Copy full SHA for fb3d839
1 file changed
release.yaml
@@ -0,0 +1,24 @@
1
+name: Automated Release
2
+on:
3
+ push:
4
+ branches:
5
+ - main # Or 'master' depending on your default branch name
6
+
7
+jobs:
8
+ release:
9
+ name: Release
10
+ runs-on: ubuntu-latest
11
+ permissions:
12
+ contents: write
13
+ issues: write
14
+ pull-requests: write
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@v4
18
+ with:
19
+ fetch-depth: 0 # Essential: tells the tool to look at history
20
21
+ - name: Semantic Release
22
+ uses: cycjimmy/semantic-release-action@v4
23
+ env:
24
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments