Skip to content

Commit

Permalink
Update android-release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dogi authored Jul 2, 2024
1 parent c78afbe commit df8c07d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/android-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,12 @@ jobs:
cp "${file}.lite" "$file"
done
ls -al app/build.gradle
echo "ANDROID_VERSION_LITE=$(grep -oP 'versionName "\K[0-9.]+' app/build.gradle | sed 's/[^0-9.]//g')" >> $GITHUB_ENV
echo "ANDROID_VERSION_LITE=$(grep 'versionName \"' build.gradle | awk -F'\"' '{print $2}')" >> $GITHUB_ENV
sed -i 's/\(versionName "[0-9.]\+\)"/\1-lite"/' app/build.gradle
- name: build release APK and AAB
run: |
grep -oP 'versionName "\K[0-9.]+' app/build.gradle
echo "ANDROID_VERSION_NAME=$(grep -oP 'versionName "\K[0-9.]+' app/build.gradle | sed 's/[^0-9.]//g')" >> $GITHUB_ENV
echo "ANDROID_VERSION_NAME=$(grep 'versionName \"' build.gradle | awk -F'\"' '{print $2}')" >> $GITHUB_ENV
echo "ANDROID_VERSION_CODE=$(grep versionCode app/build.gradle | sed 's/[^0-9.]//g')" >> $GITHUB_ENV
./gradlew assembleRelease bundleRelease
ls -alR app/build/outputs
Expand Down

0 comments on commit df8c07d

Please sign in to comment.