Skip to content

Commit c7fe596

Browse files
authored
chore: fix release pipeline (#1209)
1 parent a8feee9 commit c7fe596

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
git clone --branch=fastlane-android --depth=1 https://${{ github.repository_owner }}:${{ github.token }}@github.com/${{ github.repository }} fastlane
4949
cd fastlane
5050
51-
echo "${{ github.event.release.body }}" > metadata/android/en-US/changelogs/${{ steps.download-assets.outputs.VERSION_CODE }}.txt
51+
printf "%s" "${{ github.event.release.body }}" > "metadata/android/en-US/changelogs/${{ steps.download-assets.outputs.VERSION_CODE }}.txt"
5252
5353
# Force push to fastlane branch
5454
git checkout --orphan temporary
@@ -72,7 +72,7 @@ jobs:
7272
git clone --branch=fastlane-ios --depth=1 https://${{ github.repository_owner }}:${{ github.token }}@github.com/${{ github.repository }} fastlane
7373
cd fastlane
7474
75-
echo "${{ github.event.release.body }}" > metadata/en-US/release_notes.txt
75+
printf "%s" "${{ github.event.release.body }}" > "metadata/en-US/release_notes.txt"
7676
7777
# Force push to fastlane branch
7878
git checkout --orphan temporary

0 commit comments

Comments
 (0)