chore: use Git commit message as changelog for edge releases

This commit is contained in:
Jagandeep Brar
2022-06-20 22:32:08 -04:00
parent ff08010eca
commit 2e90ba36a9
4 changed files with 10 additions and 8 deletions

View File

@@ -3,6 +3,9 @@ name: Publish Android
on:
workflow_call:
inputs:
build-changelog:
required: true
type: string
build-number:
required: true
type: string
@@ -60,6 +63,11 @@ jobs:
case 'edge':
default: return 'internal';
}
- name: Generate Changelog
run: |
mkdir -p ${{ github.workspace }}/android/fastlane/metadata/android/en-CA/changelogs
echo ${{ inputs.build-changelog }} > ${{ github.workspace }}/android/fastlane/metadata/android/en-CA/changelogs/default.txt
- name: Deploy to Google Play Store
working-directory: ${{ github.workspace }}/android