Skip to content

Commit 37ffccf

Browse files
committed
Remove invalid --verbose flag from Hugo commands
Hugo doesn't support --verbose flag - removed from both development and production build commands in PR validation workflow
1 parent 0447930 commit 37ffccf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pr-validation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,13 @@ jobs:
9595
- name: Test Build (Development)
9696
run: |
9797
echo "Testing development build..."
98-
hugo --buildDrafts --buildFuture --verbose
98+
hugo --buildDrafts --buildFuture
9999
echo "✅ Development build successful"
100100
101101
- name: Test Build (Production)
102102
run: |
103103
echo "Testing production build..."
104-
hugo --minify --buildFuture --verbose
104+
hugo --minify --buildFuture
105105
echo "✅ Production build successful"
106106
107107
- name: Check Build Output

0 commit comments

Comments
 (0)