made new release 2.4

This commit is contained in:
Odweta
2025-01-03 21:27:19 +01:00
parent 910e968653
commit 66f3ad791f
2 changed files with 6 additions and 4 deletions
+4 -2
View File
@@ -16,7 +16,7 @@ echo "[add, commit, push]"
echo echo
git add .. git add ..
git commit -m "made new release $ver" git commit -m "made new release $ver"
git push git push -f
# build # build
echo echo
@@ -42,7 +42,9 @@ curl --request POST \
"https://gitlab.com/api/v4/projects/47146187/repository/tags" "https://gitlab.com/api/v4/projects/47146187/repository/tags"
# make a release # 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" }' data_str='{ "name": "v'$ver'", "tag_name": "'$ver'", "ref": "HEAD" }'
curl --request POST \ curl --request POST \
--header "PRIVATE-TOKEN: $glpat" \ --header "PRIVATE-TOKEN: $glpat" \
+2 -2
View File
@@ -32,8 +32,8 @@ android {
applicationId = "com.odweta.solon" applicationId = "com.odweta.solon"
minSdk = 28 minSdk = 28
targetSdk = 34 targetSdk = 34
versionCode = 212 versionCode = 211
versionName = "2.5" versionName = "2.4"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
} }