Skip to content

Commit 994c4b6

Browse files
authored
Update build release artifacts workflow to include release notes (#4568)
1 parent f77ea3f commit 994c4b6

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/build-release-artifacts.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,15 @@ jobs:
1717
- name: Perform gradle build
1818
run: |
1919
./gradlew firebasePublish -PpublishConfigFilePath=release.cfg -PpublishMode=RELEASE -PincludeFireEscapeArtifacts=true
20+
21+
- name: Generate release notes
22+
run: |
23+
python3 docs/make_release_notes.py
24+
cd build/changelog && zip -r ../release_notes.zip android
25+
2026
- name: Upload generated artifacts
2127
uses: actions/upload-artifact@v2
2228
with:
2329
name: release_artifacts
2430
path: build/*.zip
25-
retention-days: 5
31+
retention-days: 15

0 commit comments

Comments
 (0)