refactor: default to production releases

This commit is contained in:
Rainer Killinger
2023-02-13 18:46:35 +01:00
parent 7f0c54a826
commit a24e2f36fd
2 changed files with 10 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
SHELL := /bin/bash
APP_DIR := $(PWD)/app
BRANCH ?= develop
BRANCH ?= main
START_TIME := $(date +%s)
clean:

View File

@@ -85,7 +85,15 @@ platform :android do
desc "Submit a new version to the Google Play"
lane :release do
playstore_track = "production"
build
#upload_to_play_store(json_key: '../../playstore_api_key.json', skip_upload_metadata: true, skip_upload_images: true)
upload_to_play_store(
track: playstore_track,
json_key_data: Base64.decode64(ENV['ANDROID_API_KEY_CONTENT']),
skip_upload_metadata: true,
skip_upload_images: true,
skip_upload_screenshots: true
)
end
end