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 97224b2 commit 05a298fCopy full SHA for 05a298f
.github/workflows/build.yml
@@ -34,3 +34,16 @@ jobs:
34
# If the commit is tagged with a version (e.g. "v1.0.0"),
35
# release the app after building
36
release: ${{ startsWith(github.ref, 'refs/tags/v') }}
37
+ - name: Create Release
38
+ id: create_release
39
+ uses: actions/create-release@v1
40
+ env:
41
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
42
+ with:
43
+ tag_name: ${{ github.ref }}
44
+ release_name: Release ${{ github.ref }}
45
+ body: |
46
+ Changes in this Release
47
+ - First Change
48
+ draft: false
49
+ prerelease: false
0 commit comments