Skip to content

Commit

Permalink
ci: workaround for android build tool
Browse files Browse the repository at this point in the history
  • Loading branch information
libotony committed Jul 26, 2022
1 parent e0fb922 commit 31b74e2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,11 @@ jobs:
restore-keys: |
${{ runner.OS }}-node-
- name: Workaround for GH action env(Android build SDK31)
- name: Workaround Android build tools(remove ver 33,32,31)
run: |
SDKMANAGER=$ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager
echo y | $SDKMANAGER --uninstall "build-tools;33.0.0"
echo y | $SDKMANAGER --uninstall "build-tools;32.0.0"
echo y | $SDKMANAGER --uninstall "build-tools;31.0.0"
- name: Install Dependencies
Expand Down

0 comments on commit 31b74e2

Please sign in to comment.