We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9d93c4 commit d06d2b8Copy full SHA for d06d2b8
.github/workflows/release.yaml
@@ -7,15 +7,14 @@ name: Release
7
8
jobs:
9
release:
10
- name: Release
11
-
+ name: Semantic Release
12
runs-on: ubuntu-latest
13
- timeout-minutes: 10
14
15
steps:
16
- name: Checkout
17
uses: actions/checkout@v4
18
- with:
19
- fetch-depth: 0
20
21
- - uses: paulhatch/semantic-version@v5.3.0
+ - name: Execute Semantic Release
+ id: semantic
+ uses: cycjimmy/semantic-release-action@v3
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
.releaserc.json
@@ -0,0 +1,11 @@
1
+{
2
+ "branches": [
3
+ "+([0-9])?(.{+([0-9]),x}).x",
4
+ "master"
5
+ ],
6
+ "plugins": [
+ "@semantic-release/commit-analyzer",
+ "@semantic-release/release-notes-generator",
+ "@semantic-release/github"
+ ]
+}
0 commit comments