From 30ff290e6d4c5ced0d1ae4484f6db4e35444074e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Jos=C3=A9=20Mata?= Date: Fri, 24 Apr 2026 21:35:55 +0200 Subject: [PATCH] Harden Play release notes input handling --- .github/workflows/google-play-upload.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/google-play-upload.yml b/.github/workflows/google-play-upload.yml index 55e5f0d6d..14e63eb15 100644 --- a/.github/workflows/google-play-upload.yml +++ b/.github/workflows/google-play-upload.yml @@ -87,11 +87,13 @@ jobs: - name: Create release notes file id: notes if: ${{ steps.check_prereqs.outputs.enabled == 'true' && inputs.notes != '' }} + env: + NOTES: ${{ inputs.notes }} run: | set -euo pipefail NOTES_DIR="$RUNNER_TEMP/google-play-whatsnew" mkdir -p "$NOTES_DIR" - printf '%s\n' "${{ inputs.notes }}" > "$NOTES_DIR/whatsnew-en-US" + printf '%s\n' "$NOTES" > "$NOTES_DIR/whatsnew-en-US" echo "notes-dir=$NOTES_DIR" >> "$GITHUB_OUTPUT" - name: Upload to Google Play