Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Zedonboy committed Jan 28, 2025
1 parent 5c33f86 commit 41c1e2d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ jobs:
echo "${{ secrets.ANDROID_KEY_ALIAS }}" > key_alias.txt
echo "${{ secrets.ANDROID_KEY_PASSWORD }}" > key_password.txt
# Use full path to zipalign
export ZIPALIGN=$ANDROID_HOME/build-tools/35.0.0/zipalign
LATEST_BUILD_TOOLS=$(ls $ANDROID_HOME/build-tools | sort -V | tail -n 1)
ZIPALIGN="$ANDROID_HOME/build-tools/$LATEST_BUILD_TOOLS/zipalign"
for apk in build/app/outputs/flutter-apk/*-release.apk; do
[ -f "$apk" ] || continue
Expand All @@ -72,7 +72,7 @@ jobs:
"$apk" \
$(cat key_alias.txt)

zipalign -v 4 \
$ZIPALIGN -v 4 \
"$apk" \
"build/app/outputs/flutter-apk/$signed_name"
done
Expand Down

0 comments on commit 41c1e2d

Please sign in to comment.