mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-10 19:52:53 +00:00
refactor: default to production releases
This commit is contained in:
2
Makefile
2
Makefile
@@ -1,6 +1,6 @@
|
|||||||
SHELL := /bin/bash
|
SHELL := /bin/bash
|
||||||
APP_DIR := $(PWD)/app
|
APP_DIR := $(PWD)/app
|
||||||
BRANCH ?= develop
|
BRANCH ?= main
|
||||||
START_TIME := $(date +%s)
|
START_TIME := $(date +%s)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
|||||||
@@ -85,7 +85,15 @@ platform :android do
|
|||||||
|
|
||||||
desc "Submit a new version to the Google Play"
|
desc "Submit a new version to the Google Play"
|
||||||
lane :release do
|
lane :release do
|
||||||
|
playstore_track = "production"
|
||||||
|
|
||||||
build
|
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
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user