We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b55ef1f commit b307d7fCopy full SHA for b307d7f
1 file changed
.github/workflows/release-pocket-android.yml
@@ -38,6 +38,9 @@ jobs:
38
distribution: temurin
39
java-version: '21'
40
41
+ - name: Setup Android SDK
42
+ uses: android-actions/setup-android@v3
43
+
44
- uses: pnpm/action-setup@v4
45
with:
46
run_install: false
@@ -46,6 +49,11 @@ jobs:
49
node-version: lts/*
47
50
cache: pnpm
48
51
52
+ - name: Install Android build tools
53
+ run: |
54
+ sdkmanager "build-tools;36.1.0"
55
+ echo "${ANDROID_SDK_ROOT:-$ANDROID_HOME}/build-tools/36.1.0" >> "$GITHUB_PATH"
56
57
- run: pnpm install --frozen-lockfile
58
- run: pnpm run build:packages
59
0 commit comments