diff --git a/deploy.sh b/deploy.sh index 80530e7..ef7f2ce 100755 --- a/deploy.sh +++ b/deploy.sh @@ -16,7 +16,7 @@ echo "[add, commit, push]" echo git add .. git commit -m "made new release $ver" -git push +git push -f # build echo @@ -42,7 +42,9 @@ curl --request POST \ "https://gitlab.com/api/v4/projects/47146187/repository/tags" # make a release -echo "\n[publishing release $ver]\n" +echo +echo "[publishing release $ver]" +echo data_str='{ "name": "v'$ver'", "tag_name": "'$ver'", "ref": "HEAD" }' curl --request POST \ --header "PRIVATE-TOKEN: $glpat" \ diff --git a/mobile/app/build.gradle.kts b/mobile/app/build.gradle.kts index 6c58809..b92750a 100644 --- a/mobile/app/build.gradle.kts +++ b/mobile/app/build.gradle.kts @@ -32,8 +32,8 @@ android { applicationId = "com.odweta.solon" minSdk = 28 targetSdk = 34 - versionCode = 212 - versionName = "2.5" + versionCode = 211 + versionName = "2.4" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" }