Skip to content

Commit dd74242

Browse files
committed
Fix permission
1 parent c250782 commit dd74242

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/CI.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,21 @@ jobs:
5454
# - test
5555
steps:
5656
- uses: actions/checkout@v5
57+
- name: Create Release
58+
id: create_release
59+
uses: comnoco/create-release@v2
60+
env:
61+
GITHUB_TOKEN: ${{ github.toekn }} # This token is provided by Actions, you do not need to create your own token
62+
with:
63+
tag_name: ${{ github.ref }}
64+
release_name: Release ${{ github.ref }}
65+
body: |
66+
Changes in this Release
67+
- First Change
68+
- Second Change
69+
draft: false
70+
prerelease: false
71+
5772
- uses: changepacks/action@main
5873
with:
5974
publish: true

0 commit comments

Comments
 (0)