Adde dHTTP version check for fdroid.
This commit is contained in:
parent
fcebf916d2
commit
e11dee220f
4
.gitignore
vendored
4
.gitignore
vendored
@ -216,4 +216,6 @@ gradle-app.setting
|
|||||||
|
|
||||||
release/
|
release/
|
||||||
|
|
||||||
crowdin.properties
|
crowdin.properties
|
||||||
|
|
||||||
|
publish-version.sh
|
10
build.sh
Executable file
10
build.sh
Executable file
@ -0,0 +1,10 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
BASE_VERSION="v1.6"
|
||||||
|
TODAYS_VERSION="1"
|
||||||
|
|
||||||
|
VERSION="${BASE_VERSION}.$(date '+%y%m%j')$TODAYS_VERSION"
|
||||||
|
|
||||||
|
./version.sh ${VERSION} $@
|
||||||
|
|
||||||
|
./publish-version.sh ${VERSION} $@
|
10
version.sh
10
version.sh
@ -1,14 +1,10 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# You can pass --force as first parameter to force push and tag creation.
|
# You can pass --force as first parameter to force push and tag creation.
|
||||||
BASE_VERSION="v1.6"
|
|
||||||
TODAYS_VERSION="1"
|
|
||||||
|
|
||||||
VERSION="${BASE_VERSION}.$(date '+%y%m%j')$TODAYS_VERSION"
|
echo "Creating tag $1"
|
||||||
|
|
||||||
echo "Creating tag $VERSION"
|
git tag $1 $@
|
||||||
|
|
||||||
git tag $VERSION $1
|
|
||||||
|
|
||||||
echo "Pushing tag"
|
echo "Pushing tag"
|
||||||
|
|
||||||
git push origin $VERSION $1
|
git push origin $1 $@
|
||||||
|
Loading…
Reference in New Issue
Block a user