We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1c4a03 commit ce14460Copy full SHA for ce14460
2 files changed
.github/workflows/hugo.yml
@@ -53,9 +53,7 @@ jobs:
53
HUGO_CACHEDIR: ${{ runner.temp }}/hugo_cache
54
HUGO_ENVIRONMENT: production
55
run: |
56
- hugo \
57
- --minify \
58
- --baseURL "${{ steps.pages.outputs.base_url }}/"
+ make build
59
- name: Upload artifact
60
uses: actions/upload-pages-artifact@v3
61
with:
makefile
@@ -0,0 +1,8 @@
1
+build:
2
+ hugo --minify
3
+
4
+clean:
5
+ rm -r public
6
7
+run:
8
+ hugo server --disableFastRender -D
0 commit comments