From 4b87dcb2096392714f03ac8e1e4ead1d23026eb3 Mon Sep 17 00:00:00 2001 From: Subhamoy Biswas Date: Mon, 27 Oct 2025 19:04:44 +0530 Subject: [PATCH] ci: added new lfs config workflow step --- .github/workflows/release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5e63309..9fb7e47 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,6 +24,12 @@ jobs: args: '' runs-on: ${{ matrix.platform }} steps: + - name: 🔐 Configure Git LFS + shell: bash + run: | + echo "machine lfs.neosubhamoy.com login ${{ secrets.LFS_USERNAME }} password ${{ secrets.LFS_PASSWORD }}" > ~/.netrc + chmod 600 ~/.netrc || true + - name: 🚚 Checkout repository uses: actions/checkout@v4 with: