mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-12 14:51:44 +01:00
Merge branch 'beta' into 'New_API'
Beta See merge request fabinfra/fabaccess/borepin!23
This commit is contained in:
commit
41c9b00f5c
@ -145,7 +145,7 @@ build_GTK:
|
|||||||
# dependencies:
|
# dependencies:
|
||||||
# - build_job
|
# - build_job
|
||||||
|
|
||||||
deploy_Android:
|
deploy_Android_alpha:
|
||||||
variables:
|
variables:
|
||||||
LC_ALL: 'en_US.UTF-8'
|
LC_ALL: 'en_US.UTF-8'
|
||||||
LANG: 'en_US.UTF-8'
|
LANG: 'en_US.UTF-8'
|
||||||
@ -167,12 +167,35 @@ deploy_Android:
|
|||||||
dependencies:
|
dependencies:
|
||||||
- build_Android
|
- build_Android
|
||||||
|
|
||||||
|
deploy_Android_beta:
|
||||||
|
variables:
|
||||||
|
LC_ALL: 'en_US.UTF-8'
|
||||||
|
LANG: 'en_US.UTF-8'
|
||||||
|
only:
|
||||||
|
- beta
|
||||||
|
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:
|
deploy_iOS:
|
||||||
variables:
|
variables:
|
||||||
LC_ALL: 'en_US.UTF-8'
|
LC_ALL: 'en_US.UTF-8'
|
||||||
LANG: 'en_US.UTF-8'
|
LANG: 'en_US.UTF-8'
|
||||||
only:
|
only:
|
||||||
- alpha
|
- alpha
|
||||||
|
- feature/fastlane
|
||||||
needs:
|
needs:
|
||||||
- build_iOS
|
- build_iOS
|
||||||
stage: deploy
|
stage: deploy
|
||||||
@ -180,9 +203,10 @@ deploy_iOS:
|
|||||||
- macos
|
- macos
|
||||||
before_script:
|
before_script:
|
||||||
- 'echo $app_store_credentials > app-store-credentials.json'
|
- 'echo $app_store_credentials > app-store-credentials.json'
|
||||||
|
- 'export PATH="/usr/local/opt/ruby/bin:$PATH"'
|
||||||
script:
|
script:
|
||||||
- 'bundle install'
|
- 'bundle install'
|
||||||
- 'bundle exec fastlane pilot upload --api_key_path app-store-credentials.json'
|
- 'bundle exec fastlane pilot upload --api_key_path app-store-credentials.json --ipa Borepin/Borepin.iOS/bin/iPhone/Debug/Borepin.iOS.ipa'
|
||||||
after_script:
|
after_script:
|
||||||
- 'rm app-store-credentials.json'
|
- 'rm app-store-credentials.json'
|
||||||
dependencies:
|
dependencies:
|
||||||
|
@ -185,6 +185,6 @@
|
|||||||
</ProjectExtensions>
|
</ProjectExtensions>
|
||||||
<Target Name="BeforeBuild" Condition=" '$(GITLAB_CI)' == 'true' ">
|
<Target Name="BeforeBuild" Condition=" '$(GITLAB_CI)' == 'true' ">
|
||||||
<XmlPoke XmlInputPath="Properties\AndroidManifest.xml" Namespaces="<Namespace Prefix='android' Uri='http://schemas.android.com/apk/res/android' />" Query="manifest/@android:versionCode" Value="$(CI_PIPELINE_ID)" />
|
<XmlPoke XmlInputPath="Properties\AndroidManifest.xml" Namespaces="<Namespace Prefix='android' Uri='http://schemas.android.com/apk/res/android' />" Query="manifest/@android:versionCode" Value="$(CI_PIPELINE_ID)" />
|
||||||
<XmlPoke XmlInputPath="Properties\AndroidManifest.xml" Namespaces="<Namespace Prefix='android' Uri='http://schemas.android.com/apk/res/android' />" Query="manifest/@android:versionName" Value="0.1.0-$(CI_COMMIT_SHORT_SHA)-$(CI_PIPELINE_ID)" />
|
<XmlPoke XmlInputPath="Properties\AndroidManifest.xml" Namespaces="<Namespace Prefix='android' Uri='http://schemas.android.com/apk/res/android' />" Query="manifest/@android:versionName" Value="$(CI_COMMIT_SHORT_SHA)-$(CI_PIPELINE_ID)" />
|
||||||
</Target>
|
</Target>
|
||||||
</Project>
|
</Project>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user