We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 345d290 + 92f3eec commit cc1be62Copy full SHA for cc1be62
2 files changed
.github/workflows/ci.yml
@@ -39,3 +39,17 @@ jobs:
39
uses: actions/checkout@v6
40
- name: Build and test
41
run: make
42
+ version-release:
43
+ runs-on: ubuntu-latest
44
+ needs: [test-makefile, test-fedora]
45
+ steps:
46
+ - name: Checkout
47
+ uses: actions/checkout@v6
48
+ with:
49
+ fetch-depth: 0
50
+ fetch-tags: true
51
+ - name: Semantic Release
52
+ uses: cycjimmy/semantic-release-action@v6
53
+ if: github.event_name == 'push' && github.ref == 'refs/heads/main'
54
+ env:
55
+ GITHUB_TOKEN: ${{ secrets.RELEASE_APP_ID }}
.releaserc.yml
@@ -0,0 +1,7 @@
1
+branches:
2
+ - main
3
+
4
+plugins:
5
+ - "@semantic-release/commit-analyzer"
6
+ - "@semantic-release/release-notes-generator"
7
+ - "@semantic-release/github"
0 commit comments