From 3ab36d5a66a38bc234a1f8a31b67c985ff500975 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Beno=C3=AEt=20Harrault?= <benoit@harrault.fr>
Date: Wed, 30 Jun 2021 15:18:22 +0200
Subject: [PATCH] Fix send jabber notification on create release tag

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 453c179..9d0e11e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -111,7 +111,7 @@ application:release:
       else
         git tag -a "${TAG_NAME}" -m "Release ${VERSION_NAME} (${VERSION_CODE})"
         git push origin "${TAG_NAME}"
-        curl --silent -d '{"token": "${JABBER_NOTIFICATION_TOKEN}", "message": "New tag for ${CI_PROJECT_PATH}: ${TAG_NAME}"}' -H "Content-Type: application/json" -X POST ${JABBER_NOTIFICATION_URL}
+        curl --silent -d "{\"token\": \"${JABBER_NOTIFICATION_TOKEN}\", \"message\": \"New tag for ${CI_PROJECT_PATH}: ${TAG_NAME}\"}" -H "Content-Type: application/json" -X POST ${JABBER_NOTIFICATION_URL}
       fi
 
 android:deploy:
diff --git a/android/gradle.properties b/android/gradle.properties
index 9df4ecc..51b0cbe 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.6
-app.versionCode=7
+app.versionName=1.0.7
+app.versionCode=8
-- 
GitLab