We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d255d2d commit ed84216Copy full SHA for ed84216
1 file changed
.github/workflows/release-draft.yml
@@ -51,6 +51,12 @@ jobs:
51
mv app/build/outputs/apk/release/app-release.apk "${{ github.event.inputs.app_name }}-${{ github.event.inputs.tag_name }}.apk"
52
echo "renamed_apk=${{ github.event.inputs.app_name }}-${{ github.event.inputs.tag_name }}.apk" >> $GITHUB_ENV
53
54
+ - name: Get commit messages since last tag
55
+ id: release_notes
56
+ run: |
57
+ git fetch --tags
58
+ git log $(git describe --tags --abbrev=0 2>/dev/null || echo --root)..HEAD --pretty=format:"%s %h" > changelog.txt
59
+
60
- name: Upload APK Artifact
61
uses: actions/upload-artifact@v4
62
with:
@@ -65,3 +71,7 @@ jobs:
65
71
draft: true
66
72
name: ${{ github.event.inputs.tag_name }}
67
73
prerelease: false
74
+ bodyFile: changelog.txt
75
+ draft: true
76
+ name: ${{ github.event.inputs.tag_name }}
77
+ prerelease: false
0 commit comments