Update .gitlab-ci.yml

This commit is contained in:
TheJoKlLa 2021-09-21 17:08:50 +00:00
parent 49a7972c65
commit 34f549b40b

View File

@ -145,7 +145,7 @@ build_GTK:
# dependencies:
# - build_job
deploy_Android:
deploy_Android_alpha:
variables:
LC_ALL: 'en_US.UTF-8'
LANG: 'en_US.UTF-8'
@ -167,6 +167,28 @@ deploy_Android:
dependencies:
- build_Android
deploy_Android_beta:
variables:
LC_ALL: 'en_US.UTF-8'
LANG: 'en_US.UTF-8'
only:
- beat
needs:
- build_Android
stage: deploy
image: registry.gitlab.com/fabinfra/gtk-sharp-build:latest
tags:
- docker
before_script:
- 'echo $play_store_credentials > play-store-credentials.json'
script:
- 'bundle install'
- 'bundle exec fastlane supply --aab Borepin/Borepin.Android/bin/Release/org.fab_infra.fabaccess-Signed.aab --track beta'
after_script:
- 'rm play-store-credentials.json'
dependencies:
- build_Android
deploy_iOS:
variables:
LC_ALL: 'en_US.UTF-8'