Skip to content

Commit 0ce5be3

Browse files
committed
build: Fix npm command for building website
Corrected the npm command from 'npm build' to 'npm run build' to ensure the website builds correctly. Signed-off-by: ChihoSin chihosin@icloud.com
1 parent c7cd0a5 commit 0ce5be3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install dependencies
2424
run: npm ci
2525
- name: Build website
26-
run: npm build
26+
run: npm run build
2727

2828
- name: Upload Build Artifact
2929
uses: actions/upload-pages-artifact@v3

0 commit comments

Comments
 (0)