Skip to content

Commit

Permalink
Fix CD change log generate file path
Browse files Browse the repository at this point in the history
  • Loading branch information
abc873693 committed Sep 27, 2021
1 parent 2fadca9 commit 49905a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/generate_android_changelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
for locale in "en-US" "zh-TW"
do
mkdir -p metadata/android/"${locale}"/changelogs/
jq -r ".\"$1\".\"${locale}\"" ../../assets/changelog.json >> metadata/android/"${locale}"/changelogs/default.txt
jq -r ".\"$1\".\"${locale}\"" ../../changelog.json >> metadata/android/"${locale}"/changelogs/default.txt
done

echo "Generate android changelog success"
2 changes: 1 addition & 1 deletion .github/scripts/generate_ios_changelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

for locale in "en-US" "zh-TW"
do
jq -r ".\"$1\".\"${locale}\"" ../../assets/changelog.json >> "${locale}".txt
jq -r ".\"$1\".\"${locale}\"" ../../changelog.json >> "${locale}".txt
done

echo "Generate iOS changelog success"

0 comments on commit 49905a2

Please sign in to comment.