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