Skip to content

Commit

Permalink
Merge pull request #125 from anywherelan/update-deps
Browse files Browse the repository at this point in the history
ci: fix installing ndk-bundle in build-manual
  • Loading branch information
pymq authored Jun 16, 2024
2 parents cc7ae28 + 7e08f0f commit b770805
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build-manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
cache-dependency-path: |
awl/go.sum
awl/cmd/awl-tray/go.sum
- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '12.x'
Expand All @@ -47,7 +47,15 @@ jobs:
channel: 'stable'
- run: flutter --version
- name: Install ndk-bundle
run: $ANDROID_HOME/tools/bin/sdkmanager --install "ndk-bundle"
run: |
echo "ls $ANDROID_HOME/"
ls -lah $ANDROID_HOME/ || true
echo "ls $ANDROID_HOME/tools/bin/"
ls -lah $ANDROID_HOME/tools/bin/ || true
echo "ls $ANDROID_HOME/cmdline-tools/latest/bin/"
ls -lah $ANDROID_HOME/cmdline-tools/latest/bin/ || true
echo "install ndk-bundle"
$ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager --install "ndk-bundle"
- name: Configure Keystore for Android
run: |
Expand Down

0 comments on commit b770805

Please sign in to comment.