Skip to content

Commit 6394582

Browse files
committed
ci: Correctly generate GitHub release
1 parent 568824e commit 6394582

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.github/workflows/build_and_release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,12 @@ jobs:
9292
name: Release
9393
needs: [android-example, ios-example]
9494
runs-on: ubuntu-latest
95+
96+
permissions:
97+
contents: write
98+
pull-requests: write
99+
issues: write
100+
95101
steps:
96102
- name: Checkout
97103
uses: actions/checkout@v4
Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
module.exports = {
22
branches: [{ name: 'main' }],
3-
plugins: ['@semantic-release/commit-analyzer', '@semantic-release/npm'],
3+
plugins: [
4+
'@semantic-release/commit-analyzer',
5+
'@semantic-release/npm',
6+
'@semantic-release/release-notes-generator',
7+
'@semantic-release/github',
8+
],
49
};

0 commit comments

Comments
 (0)