From d351d9f684f9357d4cf69fd9685fb40f3c3deb57 Mon Sep 17 00:00:00 2001 From: Cody Guldner Date: Thu, 23 Jul 2026 09:29:05 -0500 Subject: [PATCH] Update API declarations in spec_update workflow CI runs the binary-compatibility-validator (:core:apiCheck and :android:apiCheck), which fails when a spec update changes the public API. Run :core:apiDump and :android:apiDump after generation so the committed .api declarations stay in sync. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/spec_update.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/spec_update.yml b/.github/workflows/spec_update.yml index 896ce31e0..7a3e143f7 100644 --- a/.github/workflows/spec_update.yml +++ b/.github/workflows/spec_update.yml @@ -90,6 +90,8 @@ jobs: cd ../../../.. - name: Generate Stone run: ./gradlew :core:generateStone + - name: Update API declarations + run: ./gradlew :core:apiDump :android:apiDump - name: Close Old Pull Requests id: close-old-prs