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 bc13e4a commit 54162b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/android-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ jobs:
done
ls -al app/build.gradle
ANDROID_VERSION_LITE=$(grep versionName app/build.gradle | sed 's/[^0-9.]//g')
echo "ANDROID_VERSION_LITE=${ANDROID_VERSION_LITE}" >> $GITHUB_ENV
echo "ANDROID_VERSION_LITE=$ANDROID_VERSION_LITE" >> $GITHUB_ENV
sed -i 's/\(versionName "[0-9.]\+\)"/\1-lite"/' app/build.gradle
- name: build release APK and AAB
run: |
ANDROID_VERSION_NAME=$(grep versionName app/build.gradle | sed 's/[^0-9.]//g')
ANDROID_VERSION_CODE=$(grep versionCode app/build.gradle | sed 's/[^0-9.]//g')
echo "ANDROID_VERSION_NAME=${ANDROID_VERSION_NAME}" >> $GITHUB_ENV
echo "ANDROID_VERSION_CODE=${ANDROID_VERSION_CODE}" >> $GITHUB_ENV
echo "ANDROID_VERSION_NAME=$ANDROID_VERSION_NAME" >> $GITHUB_ENV
echo "ANDROID_VERSION_CODE=$ANDROID_VERSION_CODE" >> $GITHUB_ENV
./gradlew assembleRelease bundleRelease
ls -alR app/build/outputs
mkdir -p sign
Expand Down

0 comments on commit 54162b4

Please sign in to comment.