We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 437f05c commit af13ba2Copy full SHA for af13ba2
1 file changed
.github/workflows/hugo.yml
@@ -61,10 +61,6 @@ jobs:
61
hugo \
62
--minify \
63
--baseURL "${{ steps.pages.outputs.base_url }}/"
64
- - name: Upload artifact
65
- uses: actions/upload-pages-artifact@v2
66
- with:
67
- path: ./public
68
69
# Deployment job
70
deploy:
@@ -84,6 +80,18 @@ jobs:
84
80
if: ${{ github.event_name == 'schedule' }}
85
81
needs: build
86
82
steps:
83
+ - name: Checkout repository with LFS
+ uses: actions/checkout@v4
+ with:
+ lfs: true
87
+ submodules: recursive
88
+ - name: Install Git LFS
89
+ run: |
90
+ sudo apt-get update
91
+ sudo apt-get install git-lfs
92
+ git lfs install
93
+ - name: Pull Git LFS files
94
+ run: git lfs pull
95
- name: update netlify
96
id: netlify
97
run:
0 commit comments