From 34f549b40b9f0a8336f9ba7bf598dd31db8c8edf Mon Sep 17 00:00:00 2001 From: TheJoKlLa Date: Tue, 21 Sep 2021 17:08:50 +0000 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 45aaa32..4cfebd5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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'