Skip to content

Commit 38e0e0b

Browse files
author
Cosimo Commisso
committed
update workflow
1 parent 386964b commit 38e0e0b

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/hugo.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ jobs:
4141
id: pages
4242
uses: actions/configure-pages@v5
4343
- name: Install Node.js dependencies
44-
run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true"
44+
run: |
45+
cd marketing
46+
[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true
4547
- name: Build with Hugo
4648
env:
4749
HUGO_CACHEDIR: ${{ runner.temp }}/hugo_cache

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,5 @@ _testmain.go
2525
node_modules/
2626
.DS_Store
2727

28-
marketing/public/*
28+
marketing/public/*
29+
marketing/resources/

0 commit comments

Comments
 (0)