We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 386964b commit 38e0e0bCopy full SHA for 38e0e0b
2 files changed
.github/workflows/hugo.yaml
@@ -41,7 +41,9 @@ jobs:
41
id: pages
42
uses: actions/configure-pages@v5
43
- name: Install Node.js dependencies
44
- run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true"
+ run: |
45
+ cd marketing
46
+ [[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true
47
- name: Build with Hugo
48
env:
49
HUGO_CACHEDIR: ${{ runner.temp }}/hugo_cache
.gitignore
@@ -25,4 +25,5 @@ _testmain.go
25
node_modules/
26
.DS_Store
27
28
-marketing/public/*
+marketing/public/*
29
+marketing/resources/
0 commit comments