From 62be72e918ce375ddbb2fe48969d2f08795ff86e Mon Sep 17 00:00:00 2001 From: funman300 Date: Thu, 14 May 2026 10:18:57 -0700 Subject: [PATCH] fix(ci): bust SDK cache key to force fresh SDK install after prior broken cache Co-Authored-By: Claude Sonnet 4.6 --- .gitea/workflows/android-build.yml | 2 +- .gitea/workflows/android-release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/android-build.yml b/.gitea/workflows/android-build.yml index 8efed36..8ea536c 100644 --- a/.gitea/workflows/android-build.yml +++ b/.gitea/workflows/android-build.yml @@ -35,7 +35,7 @@ jobs: id: sdk-cache with: path: ${{ env.ANDROID_SDK_ROOT }} - key: android-sdk-ndk${{ env.NDK_VERSION }}-bt${{ env.BUILD_TOOLS_VERSION }} + key: v2-android-sdk-ndk${{ env.NDK_VERSION }}-bt${{ env.BUILD_TOOLS_VERSION }} - name: Install system dependencies run: | diff --git a/.gitea/workflows/android-release.yml b/.gitea/workflows/android-release.yml index 4037bfa..2a53fc8 100644 --- a/.gitea/workflows/android-release.yml +++ b/.gitea/workflows/android-release.yml @@ -32,7 +32,7 @@ jobs: id: sdk-cache with: path: ${{ env.ANDROID_SDK_ROOT }} - key: android-sdk-ndk${{ env.NDK_VERSION }}-bt${{ env.BUILD_TOOLS_VERSION }} + key: v2-android-sdk-ndk${{ env.NDK_VERSION }}-bt${{ env.BUILD_TOOLS_VERSION }} # Java and jq are always needed (apksigner requires Java even on cache hits). - name: Install system dependencies