diff --git a/.github/workflows/android-release.yaml b/.github/workflows/android-release.yaml index db205b7f51..fe2a2c999b 100644 --- a/.github/workflows/android-release.yaml +++ b/.github/workflows/android-release.yaml @@ -29,7 +29,7 @@ jobs: version=$(tools/unix/version.sh ios_version) # +1 because below a "Bump versions" commit is created. # TODO: Find a way to refactor FDroid versioning without that additional commit. - build=$(($(tools/unix/version.sh ios_build) + 1)) + build=$(($(tools/unix/version.sh count) + 1)) code=$(($(tools/unix/version.sh android_code) + 1)) tag=$version-$build-android echo "::set-output name=version::$version" diff --git a/tools/unix/version.sh b/tools/unix/version.sh index aaa57abb65..305ad3134b 100755 --- a/tools/unix/version.sh +++ b/tools/unix/version.sh @@ -36,6 +36,10 @@ function ios_build { echo "$COUNT.$MINOR.$PATCH" } +function count { + echo "$COUNT" +} + function android_name { echo "$DATE-$COUNT" } @@ -79,6 +83,7 @@ Where format is one of the following arguments (shows current values): android_code $(android_code) qt_version $(qt_version) qt_int_version $(qt_int_version) + count $(count) EOF }