Prepend to TestFlight CHANGELOG

Fixes #598
This commit is contained in:
Davide De Rosa 2024-09-23 15:44:21 +02:00
parent d12677f657
commit ccc0cd7ce0
No known key found for this signature in database
GPG Key ID: A48836171C759F5E
2 changed files with 17 additions and 1 deletions

14
CHANGELOG.txt.testflight Normal file
View File

@ -0,0 +1,14 @@
Do not worry, your former profiles ARE NOT LOST.
You are not seeing them just because they were not
migrated (yet) to version 3.0.0. Downgrading the app
to the App Store version would restore them.
You may also notice that several features are missing,
but they will be gradually reintroduced before hitting
the App Store.
Anything else, please report to beta@passepartoutvpn.app
### Changes

View File

@ -46,7 +46,9 @@ end
desc "Push a new beta build to TestFlight"
lane :beta do
prelog = File.read("../#{logname}.testflight")
log = File.read("../#{logname}")
changelog = prelog + "\n\n" + log
match(type: "appstore")
gym(
clean: true,
@ -54,7 +56,7 @@ lane :beta do
derived_data_path: "build/derived_data"
)
pilot(
changelog: log,
changelog: changelog,
distribute_external: true,
notify_external_testers: false
)