From 3186cfe7db9279eb84cd3e6f6a7c7fe00d0b52e6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Beno=C3=AEt=20Harrault?= <benoit@harrault.fr>
Date: Sat, 2 Mar 2024 21:18:00 +0100
Subject: [PATCH] Improve CI/CD, remove "update" step, disable "build-debug" in
 master branch

---
 .gitlab-ci.yml            | 2 --
 android/gradle.properties | 4 ++--
 pubspec.yaml              | 2 +-
 3 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2d7e439..24c8063 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -40,8 +40,6 @@ android:build-release:
     - master
   except:
     - tags
-  dependencies:
-    - android:build-debug
   script:
     # Flutter local configuration
     - echo flutter.sdk=$FLUTTER_PATH > android/local.properties
diff --git a/android/gradle.properties b/android/gradle.properties
index ecbb5aa..7cc965a 100644
--- a/android/gradle.properties
+++ b/android/gradle.properties
@@ -1,5 +1,5 @@
 org.gradle.jvmargs=-Xmx1536M
 android.useAndroidX=true
 android.enableJetifier=true
-app.versionName=1.0.49
-app.versionCode=50
+app.versionName=1.0.50
+app.versionCode=51
diff --git a/pubspec.yaml b/pubspec.yaml
index 64096ba..3de6bed 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -3,7 +3,7 @@ description: A random application, for testing purpose only.
 
 publish_to: 'none'
 
-version: 1.0.49+50
+version: 1.0.50+51
 
 environment:
   sdk: '^3.0.0'
-- 
GitLab