Skip to content

Commit

Permalink
add android zipalign to pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
danielyrovas committed Feb 15, 2024
1 parent 673ed1a commit 17f57fa
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,15 @@ jobs:
distribution: 'temurin'
java-version: 19
cache: 'gradle'
- name: Setup Android SDK
uses: android-actions/setup-android@v3

# - name: Setup Android SDK
# uses: android-actions/setup-android@v3

- name: find zipalign
run: |
BUILD_TOOL_VERSION=$(ls /usr/local/lib/android/sdk/build-tools/ | tail -n 1)
ls /usr/local/lib/android/sdk/build-tools/$BUILD_TOOL_VERSION
BUILD_TOOLS_PATH=/usr/local/lib/android/sdk/build-tools/$(ls /usr/local/lib/android/sdk/build-tools/ | tail -n 1)
ls $BUILD_TOOLS_PATH
$BUILD_TOOLS_PATH/zipalign --help
# - name: Execute Gradle build
# run: ./gradlew --no-daemon --build-cache assembleRelease
Expand Down

0 comments on commit 17f57fa

Please sign in to comment.