Spaces:
Sleeping
Sleeping
Abdullah Khaled
commited on
Update main.yml
Browse files- .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: |
|