Set LFS URL

This commit is contained in:
Christian Semmler 2025-08-16 10:28:41 -07:00
parent a5b73ec694
commit 19bc50bef2
No known key found for this signature in database
GPG Key ID: 086DAA1360BEEE5C

View File

@ -6,6 +6,10 @@ 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'
@ -111,6 +115,11 @@ 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 }}