0
0
mirror of https://github.com/thunderbird/thunderbird-android.git synced 2024-09-20 04:02:14 +02:00

Remove fastlane files

This commit is contained in:
Wolf-Martell Montwé 2024-03-13 14:11:20 +01:00
parent ebd88c716a
commit cef36b029c
No known key found for this signature in database
GPG Key ID: 6D45B21512ACBF72
3 changed files with 0 additions and 90 deletions

View File

@ -1,3 +0,0 @@
# Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one
json_key_file(ENV["K9_JSON_KEY_FILE"])
package_name("com.fsck.k9")

View File

@ -1,47 +0,0 @@
# This file contains the fastlane.tools configuration
# You can find the documentation at https://docs.fastlane.tools
#
# For a list of all available actions, check out
#
# https://docs.fastlane.tools/actions
#
# For a list of all available plugins, check out
#
# https://docs.fastlane.tools/plugins/available-plugins
#
opt_out_usage
default_platform(:android)
platform :android do
desc "Runs all the tests"
lane :test do
gradle(task: "test", gradle_path: "../gradlew")
end
desc "Deploy a new version to the Google Play beta track"
lane :deploy do
gradle(
task: "clean :app-k9mail:assembleRelease",
build_type: "Release",
flavor: "google",
gradle_path: `../gradlew`,
print_command: false,
flags: "--no-build-cache --no-configuration-cache",
properties: {
"android.injected.signing.store.file" => ENV["K9MAIL_KEYSTORE_PATH"],
"android.injected.signing.store.password" => ENV["K9MAIL_KEYSTORE_PASS"],
"android.injected.signing.key.alias" => ENV["K9MAIL_KEYSTORE_WALLET_ALIAS"],
"android.injected.signing.key.password" => ENV["K9MAIL_KEYSTORE_WALLET_PASS"],
}
)
upload_to_play_store(
track: "beta",
skip_upload_images: true,
skip_upload_screenshots: true,
skip_upload_apk: false,
validate_only: true,
)
end
end

View File

@ -1,40 +0,0 @@
fastlane documentation
----
# Installation
Make sure you have the latest version of the Xcode command line tools installed:
```sh
xcode-select --install
```
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)
# Available Actions
## Android
### android test
```sh
[bundle exec] fastlane android test
```
Runs all the tests
### android deploy
```sh
[bundle exec] fastlane android deploy
```
Deploy a new version to the Google Play beta track
----
This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.
More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools).
The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools).