From 93be2fa486c3e8491787351be65ca908e04c4a6e Mon Sep 17 00:00:00 2001 From: sds100 <seth.developer@proton.me> Date: Tue, 10 Dec 2024 00:16:48 +0100 Subject: [PATCH] chore: don't copy changelog to fastlane folder --- fastlane/Fastfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 52259dcc03..df970e1958 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -27,8 +27,9 @@ lane :prod do version_code = get_properties_value(key: "VERSION_CODE", path: "./app/version.properties") version_name = get_properties_value(key: "VERSION_NAME", path: "./app/version.properties") - whats_new = File.read("../app/src/main/assets/whats-new.txt") - File.write("metadata/android/en-US/changelogs/" + version_code + ".txt", whats_new) +# Don't create changelog for f-droid because not committing it +# whats_new = File.read("../app/src/main/assets/whats-new.txt") +# File.write("metadata/android/en-US/changelogs/" + version_code + ".txt", whats_new) gradle(task: "testDebugUnitTest")