Abdullah Khaled commited on
Commit
6a1dc63
·
unverified ·
1 Parent(s): 52be2b2

Update main.yml

Browse files
Files changed (1) hide show
  1. .github/workflows/main.yml +13 -1
.github/workflows/main.yml CHANGED
@@ -10,8 +10,20 @@ jobs:
10
  runs-on: ubuntu-latest
11
 
12
  steps:
13
- - name: Checkout full repo
14
  uses: actions/checkout@v3
 
 
 
 
 
 
 
 
 
 
 
 
15
 
16
  - name: Configure Git
17
  run: |
 
10
  runs-on: ubuntu-latest
11
 
12
  steps:
13
+ - name: Checkout full repo with LFS
14
  uses: actions/checkout@v3
15
+ with:
16
+ lfs: true
17
+ fetch-depth: 0
18
+
19
+ - name: Install Git LFS
20
+ run: |
21
+ sudo apt-get update
22
+ sudo apt-get install -y git-lfs
23
+ git lfs install
24
+
25
+ - name: Pull LFS files
26
+ run: git lfs pull
27
 
28
  - name: Configure Git
29
  run: |