From 3352ae649727a334f94a502fc6b85033eb1a3a18 Mon Sep 17 00:00:00 2001 From: Shreyash Pattewar <34227385+shreyashp47@users.noreply.github.com> Date: Mon, 13 Jul 2026 13:19:35 +0530 Subject: [PATCH] Fix Play Store release notes: use whatsNewDirectory instead of unsupported releaseNotesFile --- .github/workflows/build.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1703aaa..548dbc6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -132,7 +133,7 @@ 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: @@ -140,7 +141,7 @@ jobs: 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