Workaround for bug with checkout step

This commit is contained in:
Colin Basnett
2026-03-31 02:26:54 -07:00
parent 65a8b62825
commit d5386cd870

View File

@@ -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: