Skip to content

Commit

Permalink
Write changelog into every metadata l10n directory (#1149)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmolitor-stud-tu committed Jul 24, 2024
2 parents 4589cfe + ab889c5 commit 6533fae
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/stable.build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,13 +131,21 @@ jobs:
path_ios="$(mktemp -d)"
cp -av ./appstore_metadata/* "$path_ios"
echo -n "$(date +%Y) Thilo Molitor" > "$path_ios/copyright.txt"
echo -n "$CHANGELOG_IOS" > "$path_ios/en-US/release_notes.txt"
for dir in */; do
if [[ -d "$dir" && "$dir" == *-* ]]; then
echo -n "$CHANGELOG_IOS" > "$path_ios/${dir%/}/release_notes.txt"
fi
done
echo "path_ios=$path_ios" | tee /dev/stderr >> "$GITHUB_OUTPUT"
path_macos="$(mktemp -d)"
cp -av ./appstore_metadata/* "$path_macos"
echo -n "$(date +%Y) Thilo Molitor" > "$path_macos/copyright.txt"
echo -n "$CHANGELOG_MACOS" > "$path_macos/en-US/release_notes.txt"
for dir in */; do
if [[ -d "$dir" && "$dir" == *-* ]]; then
echo -n "$CHANGELOG_MACOS" > "$path_macos/${dir%/}/release_notes.txt"
fi
done
echo "path_macos=$path_macos" | tee /dev/stderr >> "$GITHUB_OUTPUT"
- name: Publish ios to appstore connect
#run: xcrun altool --upload-app --file ./Monal/build/ipa/Monal.ipa --type ios --asc-provider S8D843U34Y --team-id S8D843U34Y -u $(cat /Users/ci/apple_connect_upload_mail.txt) -p "$(cat /Users/ci/apple_connect_upload_secret.txt)"
Expand Down

0 comments on commit 6533fae

Please sign in to comment.