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 df8c07d commit c977dea
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 @@ -49,13 +49,13 @@ jobs:
cp "${file}.lite" "$file"
done
ls -al app/build.gradle
echo "ANDROID_VERSION_LITE=$(grep 'versionName \"' build.gradle | awk -F'\"' '{print $2}')" >> $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: |
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
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
mkdir -p sign
Expand Down

0 comments on commit c977dea

Please sign in to comment.