Skip to content
Snippets Groups Projects
Commit f377c946 authored by Andri Joos's avatar Andri Joos :blush:
Browse files

Merge branch '32-versioning_pipeline' into 'master'

version name & build name from pipeline

Closes #32

See merge request !21
parents fa0b916c 17efbe79
No related branches found
No related tags found
1 merge request!21version name & build name from pipeline
Pipeline #6041 passed with stage
in 7 minutes and 15 seconds
......@@ -3,6 +3,7 @@ stages:
variables:
APPLICATION_VERSION: "1.0.0"
APPLICATION_BUILD_NUMBER: 1
android_build:
stage: build
......@@ -22,7 +23,7 @@ android_build:
- echo "keyAlias=$SIGNING_KEY_ALIAS" >> $SIGNING_PROPERTIES_FILE
- echo "storeFile=$SIGNING_STORE_FILE" >> $SIGNING_PROPERTIES_FILE
- echo $SIGNING_KEYSTORE | base64 -d > $SINGING_KEYSTORE_FILE
- flutter build appbundle --release --target-platform android-arm,android-arm64,android-x64
- flutter build appbundle --release --target-platform android-arm,android-arm64,android-x64 --build-name ${APPLICATION_VERSION} --build-number ${APPLICATION_BUILD_NUMBER}
after_script:
- mv car_app/build/app/outputs/bundle/release/app-release.aab ./car_app.aab
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment