GitHub actions: Don't add '-beta' to beta tags (pre-release mark is enough)

This commit is contained in:
Imran Remtulla
2024-03-17 05:14:08 -04:00
parent f905aa7dfd
commit da496f7c53

View File

@ -42,7 +42,6 @@ jobs:
if [ ${{ inputs.beta }} == true ]; then BETA=true; else BETA=false; fi
echo "beta=$BETA" >> $GITHUB_OUTPUT
TAG="v$VERSION"
if [ $BETA == true ]; then TAG="$TAG"-beta; fi
echo "tag=$TAG" >> $GITHUB_OUTPUT
- name: Build APKs