We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c250782 commit dd74242Copy full SHA for dd74242
.github/workflows/CI.yml
@@ -54,6 +54,21 @@ jobs:
54
# - test
55
steps:
56
- 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
+
72
- uses: changepacks/action@main
73
with:
74
publish: true
0 commit comments