File tree Expand file tree Collapse file tree 1 file changed +11
-7
lines changed
Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -24,16 +24,20 @@ jobs:
2424 args : ' '
2525 runs-on : ${{ matrix.platform }}
2626 steps :
27+ - name : 🚚 Checkout repository
28+ uses : actions/checkout@v5
29+
2730 - name : 🔐 Configure Git LFS
2831 shell : bash
2932 run : |
30- echo "machine lfs.neosubhamoy.com login ${{ secrets.LFS_USERNAME }} password ${{ secrets.LFS_PASSWORD }}" > ~/.netrc
31- chmod 600 ~/.netrc || true
33+ git config --global credential.helper store
34+ echo "https://${{ secrets.LFS_USERNAME }}:${{ secrets.LFS_PASSWORD }}@lfs.neosubhamoy.com" > ~/.git-credentials
3235
33- - name : 🚚 Checkout repository
34- uses : actions/checkout@v4
35- with :
36- lfs : true
36+ - name : 📥 Pull LFS objects
37+ shell : bash
38+ run : |
39+ git lfs install
40+ git lfs pull
3741
3842 - name : 🛠️ Install dependencies
3943 if : matrix.platform == 'ubuntu-22.04' || matrix.platform == 'ubuntu-22.04-arm'
4246 sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
4347
4448 - name : 📦 Setup node
45- uses : actions/setup-node@v4
49+ uses : actions/setup-node@v6
4650 with :
4751 node-version : ' lts/*'
4852 cache : ' npm'
You can’t perform that action at this time.
0 commit comments