From b97dd094e1ff750f39ddfd031c79d6dd61819cb5 Mon Sep 17 00:00:00 2001 From: Chance Date: Mon, 21 Apr 2025 21:00:35 -0400 Subject: [PATCH] fix(ci): manully pull git-lfs files --- .forgejo/workflows/build-release.yml | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/.forgejo/workflows/build-release.yml b/.forgejo/workflows/build-release.yml index 9fef43d..b34c342 100644 --- a/.forgejo/workflows/build-release.yml +++ b/.forgejo/workflows/build-release.yml @@ -47,14 +47,16 @@ jobs: needs: setup runs-on: ubuntu-latest steps: - - name: 📦 Install Git LFS + + - name: 📥 Checkout source + uses: https://github.com/actions/checkout@v4 + + - name: 📦 fetch Git LFS files run: | apt update apt install -y git-lfs - - name: 📥 Checkout source - uses: https://github.com/actions/checkout@v4 - with: - lfs: true + git-lfs fetch --all + git-lfs pull - name: 🗄️ Restore Cargo cache uses: https://github.com/actions/cache@v4 @@ -128,14 +130,15 @@ jobs: args: --target universal2-apple-darwin --release steps: - - name: 📦 Install Git LFS + - name: 📥 Checkout source + uses: https://github.com/actions/checkout@v4 + + - name: 📦 fetch Git LFS files run: | apt update apt install -y git-lfs - - name: 📥 Checkout source - uses: https://github.com/actions/checkout@v4 - with: - lfs: true + git-lfs fetch --all + git-lfs pull - name: 🗄️ Restore tool cache uses: https://github.com/actions/cache@v4