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