mirror of
https://github.com/Jellify-Music/App.git
synced 2026-01-11 05:20:29 -06:00
* com.jellify -> com.cosmonautical.jellify Update Android App ID to fall under the correct parent organization
40 lines
1.0 KiB
Ruby
40 lines
1.0 KiB
Ruby
# 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
|
|
#
|
|
|
|
# Uncomment the line if you want fastlane to automatically update itself
|
|
# update_fastlane
|
|
|
|
default_platform(:android)
|
|
|
|
platform :android do
|
|
desc "Runs all the tests"
|
|
lane :test do
|
|
gradle(task: "test")
|
|
end
|
|
|
|
lane :build do
|
|
gradle(task: 'clean assembleRelease')
|
|
end
|
|
|
|
desc "Deploy a new version to the Google Play"
|
|
lane :deploy do
|
|
gradle(task: 'clean bundleRelease')
|
|
upload_to_play_store(
|
|
package_name: 'com.cosmonautical.jellify',
|
|
track: 'internal',
|
|
release_status: 'draft',
|
|
json_key: './play-store-credentials.json',
|
|
)
|
|
gradle(task: 'assembleRelease') # This is to ensure the app is built and the apk is generated FOR GITHUB ACTIONS
|
|
end
|
|
end
|