We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7b56ac commit f5b6eb7Copy full SHA for f5b6eb7
.github/workflows/create_release.yml
@@ -21,12 +21,6 @@ jobs:
21
22
print(f"::set-output name=version::{version}")
23
24
- - name: Extract changelog section for release
25
- id: changelog
26
- uses: coditory/changelog-parser@v1
27
- with:
28
- version: ${{ steps.extract-version.outputs.version }}
29
-
30
- uses: actions/download-artifact@v3
31
with:
32
name: ${{ needs.build.outputs.ANDROID_APK_NAME }}
@@ -35,8 +29,8 @@ jobs:
35
uses: ncipollo/release-action@v1
36
37
artifacts: ${{ needs.build.outputs.ANDROID_APK_NAME }}
38
- body: ${{ steps.changelog.outputs.description }}
39
token: ${{ secrets.GH_ACTION_TOKEN }}
40
33
tag: ${{ steps.extract-version.outputs.version }}
41
34
prerelease: true
42
makeLatest: false
+ generateReleaseNotes: true
0 commit comments