Skip to content
Snippets Groups Projects
Commit 3ab36d5a authored by Benoît Harrault's avatar Benoît Harrault
Browse files

Fix send jabber notification on create release tag

parent 581a8449
No related branches found
No related tags found
1 merge request!13Resolve "Fix send jabber notification on create release tag"
Pipeline #1585 passed
This commit is part of merge request !13. Comments created here will be created in the context of that merge request.
...@@ -111,7 +111,7 @@ application:release: ...@@ -111,7 +111,7 @@ application:release:
else else
git tag -a "${TAG_NAME}" -m "Release ${VERSION_NAME} (${VERSION_CODE})" git tag -a "${TAG_NAME}" -m "Release ${VERSION_NAME} (${VERSION_CODE})"
git push origin "${TAG_NAME}" 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 fi
android:deploy: android:deploy:
......
org.gradle.jvmargs=-Xmx1536M org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true android.useAndroidX=true
android.enableJetifier=true android.enableJetifier=true
app.versionName=1.0.6 app.versionName=1.0.7
app.versionCode=7 app.versionCode=8
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment