Skip to content

Commit 8ab1bd9

Browse files
committed
make release
1 parent 98a2626 commit 8ab1bd9

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/create_release.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
release:
1818
runs-on: ubuntu-latest
1919
if: github.ref == 'refs/heads/develop'
20+
permissions:
21+
contents: write
2022
steps:
2123
- uses: actions/checkout@v4
2224
with:
@@ -68,6 +70,13 @@ jobs:
6870
git tag ${{ steps.get_version.outputs.version }}
6971
git push origin ${{ steps.get_version.outputs.version }}
7072
73+
- name: Create GitHub Release
74+
uses: softprops/action-gh-release@v2
75+
with:
76+
tag_name: ${{ steps.get_version.outputs.version }}
77+
generate_release_notes: true
78+
token: ${{ secrets.GITHUB_TOKEN }}
79+
7180
- name: Bump version on develop
7281
run: |
7382
git checkout develop

0 commit comments

Comments
 (0)