@@ -25,11 +25,11 @@ jobs:
2525 run : echo "git_hash=$(git rev-parse --short "$GITHUB_SHA")" >> $GITHUB_OUTPUT
2626 - name : build artifacts
2727 run : make package
28-
28+
2929 - name : Extract Repo Attributes
3030 id : attrs
3131 uses : ibnesayeed/repo-attrs@master
32-
32+
3333 - name : release
3434 uses : ncipollo/release-action@v1
3535 id : create_release
3838 prerelease : false
3939 name : Leantime v${{ steps.version.outputs.version }}
4040 tag : v${{ steps.version.outputs.version }}
41- generateReleaseNotes : false
41+ generateReleaseNotes : true
4242 makeLatest : true
4343 body : |
4444 ## Changes in this Release
6060 ```
6161 env :
6262 GITHUB_TOKEN : ${{ github.token }}
63-
63+
6464 - name : upload zip
6565 uses : actions/upload-release-asset@v1
6666 env :
7070 asset_path : ./target/Leantime-v${{ steps.version.outputs.version }}.zip
7171 asset_name : Leantime-v${{ steps.version.outputs.version }}.zip
7272 asset_content_type : application/gzip
73-
73+
7474 - name : upload tar
7575 uses : actions/upload-release-asset@v1
7676 env :
@@ -80,14 +80,14 @@ jobs:
8080 asset_path : ./target/Leantime-v${{ steps.version.outputs.version }}.tar.gz
8181 asset_name : Leantime-v${{ steps.version.outputs.version }}.tar.gz
8282 asset_content_type : application/gzip
83-
83+
8484 - name : Run latest-tag
8585 uses : EndBug/latest-tag@latest
8686 with :
8787 # You can change the name of the tag or branch with this input.
8888 # Default: 'latest'
8989 ref : latest
90-
90+
9191 # If a description is provided, the action will use it to create an annotated tag. If none is given, the action will create a lightweight tag.
9292 # Default: ''
93- description : Latest Release of Leantime.
93+ description : Latest Release of Leantime.
0 commit comments