We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acf71fe commit ad90649Copy full SHA for ad90649
.github/workflows/release.yml
@@ -74,7 +74,7 @@ jobs:
74
MAJOR=$(echo ${{ env.VERSION }} | cut -d '.' -f 1)
75
MINOR=$(echo ${{ env.VERSION }} | cut -d '.' -f 2)
76
PATCH=$(echo ${{ env.VERSION }} | cut -d '.' -f 3 | cut -d '-' -f 1)
77
- build_number=$((($MAJOR - 1) * 10000 + $MINOR * 100 + $PATCH))
+ build_number=$(($MAJOR * 10000 + $MINOR * 100 + $PATCH))
78
echo "BUILD_NUMBER=$build_number" >> $GITHUB_ENV
79
80
- name: Build Mobile apk
0 commit comments