From d3b9d4048703268a7513e2d6a438803ccf9b0460 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Tue, 13 Aug 2024 11:34:09 +0200 Subject: [PATCH] lfs in action/checkout doesnt work, see https://github.com/actions/checkout/issues/415 --- .forgejo/workflows/publish.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/publish.yml b/.forgejo/workflows/publish.yml index 3eafd47..9be8a91 100644 --- a/.forgejo/workflows/publish.yml +++ b/.forgejo/workflows/publish.yml @@ -10,8 +10,11 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - with: - lfs: true + + - name: LFS checkout + run: | + git lfs install --local + git -c "http.${github.server_url}/storage/lfs/.extraHeader=" lfs pull - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3