Remove major.minor tag from deploy.sh

This commit is contained in:
Brandon Presley 2022-09-30 17:09:19 +13:00
parent 53a5b09f7e
commit 6af167268c
1 changed files with 0 additions and 1 deletions

View File

@ -23,7 +23,6 @@ sed -i "s/\"version\": \"[0-9]*.[0-9]*\"/\"version\": \"$major.$minor\"/" ../pac
[ "$1" != "--nobundle" ] && ./gradlew bundleRelease
git add app/build.gradle ../package.json
git commit --no-verify --message "Set versionCode=$versionCode"
git tag "$major.$minor"
git tag "$versionCode"
git push origin HEAD & git push --tags
cd ..