From 0f0a78b569351d8b502600b3207ea11520c88f27 Mon Sep 17 00:00:00 2001 From: Fiona Date: Mon, 14 Sep 2026 19:49:40 -0700 Subject: [PATCH] ci: stop installing the removed legacy tools package --- .github/workflows/publish-maven.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/publish-maven.yml b/.github/workflows/publish-maven.yml index 39862b1ec9..d40a5b2419 100644 --- a/.github/workflows/publish-maven.yml +++ b/.github/workflows/publish-maven.yml @@ -32,6 +32,11 @@ jobs: - name: Setup Android SDK uses: android-actions/setup-android@v3 + with: + # The action's default also installs the legacy `tools` package, which the + # SDK repository no longer serves, so sdkmanager exits 1 and the job stops + # before building. Only platform-tools is needed; Gradle fetches the rest. + packages: platform-tools - name: Cache Gradle packages uses: actions/cache@v4