Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,9 @@ jobs:
if [ -z "$notes" ]; then
notes="- Bug fixes and improvements"
fi
echo "$notes" > /tmp/release_notes.txt
echo "notes_file=/tmp/release_notes.txt" >> "$GITHUB_OUTPUT"
mkdir -p /tmp/whatsnew
echo "$notes" > /tmp/whatsnew/default
echo "notes_file=/tmp/whatsnew/default" >> "$GITHUB_OUTPUT"

- name: Upload to Google Play
uses: r0adkll/upload-google-play@v1.1.5
Expand All @@ -132,15 +133,15 @@ jobs:
tracks: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.track || 'beta' }}
status: completed
inAppUpdatePriority: 2
releaseNotesFile: /tmp/release_notes.txt
whatsNewDirectory: /tmp/whatsnew/

- name: Create GitHub Release
env:
GH_TOKEN: ${{ github.token }}
run: |
gh release create "v${{ steps.bump.outputs.new_version_name }}" \
--title "v${{ steps.bump.outputs.new_version_name }}" \
--notes-file /tmp/release_notes.txt \
--notes-file /tmp/whatsnew/default \
app/build/outputs/bundle/release/app-release.aab

- name: Commit version bump
Expand Down
Loading