From beea834dc47104d9a10eab32a85b517d85b66044 Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Sat, 16 Aug 2025 10:35:36 -0700 Subject: [PATCH] Fix LFS CI --- .github/workflows/ci.yml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2ddcb3e6..c3294ea2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,10 +6,6 @@ concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }} cancel-in-progress: true -env: - # Read-only LFS URL - GIT_LFS: https://f9622702b3bbcac0705052a10e62a5a5:31adabe20fe975a919bd1909a6f598f37b0d6486225efa84b38da1aaf27cbd35@assets.isle.pizza/a70a70ae5ebee06d2333bb1132711de1.r2.cloudflarestorage.com/assets - jobs: clang-format: name: 'clang-format' @@ -115,15 +111,15 @@ jobs: if: ${{ matrix.msvc }} uses: ashutoshvarma/setup-ninja@master - - name: Configure Git LFS - if: ${{ matrix.build-assets }} - run: | - git config --global lfs.url "${{ env.GIT_LFS }}" - - uses: actions/checkout@v4 with: lfs: ${{ matrix.build-assets }} + - name: Checkout LFS + if: ${{ matrix.build-assets }} + run: | + git lfs pull + - name: Setup Java (Android) if: ${{ matrix.android }} uses: actions/setup-java@v4