From d5386cd8701d94b70d93013350408869947c15db Mon Sep 17 00:00:00 2001 From: Colin Basnett <5035660+cmbasnett@users.noreply.github.com> Date: Tue, 31 Mar 2026 02:26:54 -0700 Subject: [PATCH] Workaround for bug with checkout step --- .github/workflows/main.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fe4b19e..3d3b34c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,9 +18,14 @@ jobs: steps: - uses: actions/checkout@v4 with: - lfs: true + persist-credentials: true - name: Checkout LFS objects - run: git lfs checkout + run: | + git lfs install --local + AUTH=$(git config --local http.${{ github.server_url }}/.extraheader) + git config --local --unset http.${{ github.server_url }}/.extraheader + git config --local http.${{ github.server_url }}/${{ github.repository }}.git/info/lfs/objects/batch.extraheader "$AUTH" + git lfs pull - uses: SebRollen/toml-action@v1.2.0 id: read_manifest with: