Fastlane: also create APK

Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
tobiasKaminsky 2024-07-17 16:05:28 +02:00
parent 35330a3028
commit 84577b6855
No known key found for this signature in database
GPG key ID: 0E00D4D47D0C5AF7

View file

@ -42,6 +42,8 @@ desc "Build app bundle"
lane :releasePhase1 do
test()
buildBundle()
versionInfo = getVersionInfo()
buildSignedAPK(versionCode: versionInfo["versionCode"])
end
desc "Release previously built app to Google Play and create tag"
@ -54,6 +56,7 @@ desc "Build app bundle"
preReleaseChecks(versionInfo: versionInfo, tagName: tagName, type: versionComponents["type"], track: storeTrack)
checkArtifactsExist()
tag(name: tagName)
createGithubRelease_RC(name: versionInfo["versionName"], tag: tagName, versionCode: versionInfo["versionCode"])
uploadToPlayStore(track: storeTrack)
end
@ -78,6 +81,23 @@ desc "Build app bundle"
)
end
desc "Build APK"
lane :buildSignedAPK do |options|
gradle(
task: 'assemble',
flavor: 'play',
build_type: 'Release',
print_command: false,
properties: {
"android.injected.signing.store.file" => ENV["FASTLANE_NOTES_UPLOAD_STORE_FILE"],
"android.injected.signing.store.password" => ENV["FASTLANE_NOTES_UPLOAD_STORE_PASSWORD"],
"android.injected.signing.key.alias" => ENV["FASTLANE_NOTES_UPLOAD_KEY_ALIAS"],
"android.injected.signing.key.password" => ENV["FASTLANE_NOTES_UPLOAD_KEY_PASSWORD"],
}
)
sh("mv ../app/build/outputs/apk/play/release/app-play-release.apk ../release/nextcloud-notes-#{options[:versionCode]}.apk")
end
desc "Show versions and prompt for confirmation"
private_lane :preReleaseChecks do |options|
versionInfo = options[:versionInfo]
@ -120,4 +140,15 @@ desc "Build app bundle"
)
end
private_lane :createGithubRelease do |options|
set_github_release(
repository_name: "nextcloud/notes-android",
api_token: ENV["FASTLANE_NEXTCLOUD_GITHUB_API_TOKEN"],
name: options[:name],
tag_name: options[:tag],
description: (File.read("metadata/android/en-US/changelogs/" + options[:versionCode] + ".txt") rescue "No changelog provided"),
upload_assets: [ "release/nextcloud-notes-" + options[:versionCode] + ".apk" ]
)
end
end