lfs in action/checkout doesnt work, see https://github.com/actions/checkout/issues/415

This commit is contained in:
Mylloon 2024-08-13 11:51:14 +02:00
parent 8d7de99a40
commit 8fda79576f
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -10,8 +10,13 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
lfs: true
- name: Checkout LFS
run: |
ReplaceStr="echo ${{ gitea.repository }}.git/info/lfs/objects/batch" | sed 's/\//\\\//g' ; sed -i "s/\(\[http\)\( \".*\)\"\]/\1\2`$ReplaceStr`\"]/" .git/config
git config --local lfs.transfer.maxretries 1
git lfs fetch origin refs/remotes/origin/${{ gitea.ref_name }}
git lfs checkout
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3