We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f1df27 commit de4166cCopy full SHA for de4166c
1 file changed
.github/workflows/hugo.yml
@@ -43,10 +43,20 @@ jobs:
43
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
44
# - name: Install Dart Sass
45
# run: sudo snap install dart-sass
46
- - name: Checkout
+ - name: Install Git LFS
47
+ run: |
48
+ sudo apt install git-lfs
49
+ git lfs install
50
+
51
+ - name: Checkout repository with LFS
52
uses: actions/checkout@v4
53
with:
54
+ lfs: true
55
submodules: recursive
56
57
+ - name: Pull LFS files
58
+ run: git lfs pull
59
60
- name: Setup Pages
61
id: pages
62
uses: actions/configure-pages@v4
@@ -62,12 +72,6 @@ jobs:
72
--minify \
63
73
--baseURL "${{ steps.pages.outputs.base_url }}/"
64
74
65
- - name: Upload Build Artifact
66
- uses: actions/upload-artifact@v3
67
- with:
68
- name: hugo-site
69
- path: ./public
70
-
71
75
- name: Upload artifact
76
uses: actions/upload-pages-artifact@v2
77
0 commit comments