Skip to content

Commit

Permalink
create_changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
KuznetsovNikita committed Dec 8, 2024
1 parent a1a970a commit f392898
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 11 deletions.
10 changes: 0 additions & 10 deletions apps/tablet/capacitor.config.json

This file was deleted.

9 changes: 8 additions & 1 deletion apps/tablet/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ platform :ios do
load_asc_api_key
bump_build_number
build_app_with_signing(keychain_info)
create_changelog
submit_to_testflight
ensure
cleanup_keychain(keychain_info)
Expand Down Expand Up @@ -128,7 +129,13 @@ platform :ios do
export_xcargs: "-allowProvisioningUpdates",
)
end


private_lane :create_changelog do
release_notes = "./metadata/default/release_notes.txt"
changes = changelog_from_git_commits(commits_count: 10, merge_commit_filtering: "exclude_merges")
File.write(release_notes, changes)
end

private_lane :submit_to_testflight do
api_key = lane_context[SharedValues::APP_STORE_CONNECT_API_KEY]

Expand Down

0 comments on commit f392898

Please sign in to comment.