From fb90685a7c1df2636ef0eb4b61adb6957b9a4e74 Mon Sep 17 00:00:00 2001 From: Ilya Fedin Date: Fri, 16 Jan 2026 15:58:32 +0400 Subject: [PATCH] Add tde2e version to cache key in macOS packaged action --- .github/workflows/mac_packaged.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/mac_packaged.yml b/.github/workflows/mac_packaged.yml index 864aa9b0aa..82f2b8490c 100644 --- a/.github/workflows/mac_packaged.yml +++ b/.github/workflows/mac_packaged.yml @@ -50,6 +50,7 @@ jobs: env: GIT: "https://github.com" CMAKE_PREFIX_PATH: "/opt/homebrew/opt/ffmpeg@6:/opt/homebrew/opt/openal-soft" + TDE2E: "51743dfd01dff6179e2d8f7095729caa4e2222e9" UPLOAD_ARTIFACT: "true" ONLY_CACHE: "false" MANUAL_CACHING: "1" @@ -125,7 +126,7 @@ jobs: uses: actions/cache@v5 with: path: ${{ env.LibrariesPath }}/tde2e - key: ${{ runner.OS }}-tde2e-${{ env.CACHE_KEY }} + key: ${{ runner.OS }}-tde2e-${{ env.TDE2E }}-${{ env.CACHE_KEY }} - name: TDE2E. if: steps.cache-tde2e.outputs.cache-hit != 'true' run: | @@ -134,7 +135,7 @@ jobs: git init tde2e cd tde2e git remote add origin $GIT/tdlib/td.git - git fetch --depth=1 origin 51743dfd01dff6179e2d8f7095729caa4e2222e9 + git fetch --depth=1 origin $TDE2E git reset --hard FETCH_HEAD cmake -Bbuild -GNinja . \