Skip to content

Commit a929552

Browse files
Fix: Run npm run build to include next export
1 parent f9be554 commit a929552

2 files changed

Lines changed: 48 additions & 2 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
run: ${{ steps.detect-package-manager.outputs.manager }} ${{ steps.detect-package-manager.outputs.command }}
5353

5454
- name: Build with Next.js
55-
run: ${{ steps.detect-package-manager.outputs.runner }} next build
55+
run: npm run build
5656

5757
- name: Upload artifact
5858
uses: actions/upload-pages-artifact@v3

.gitignore

Lines changed: 47 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,50 @@
1+
# Dependencies
12
node_modules
2-
.devcontainer
3+
/.pnp
4+
.pnp.js
5+
6+
# Build outputs
37
.next
8+
out
9+
build
10+
dist
11+
12+
# Testing
13+
coverage
14+
15+
# Environment files
16+
.env
17+
.env.local
18+
.env.development.local
19+
.env.test.local
20+
.env.production.local
21+
22+
# Debug logs
23+
npm-debug.log*
24+
yarn-debug.log*
25+
yarn-error.log*
26+
27+
# IDE/Editor
28+
.vscode/*
29+
!.vscode/extensions.json
30+
.idea
31+
32+
# Dev container
33+
.devcontainer
434
devcontainer
35+
36+
# OS files
37+
.DS_Store
38+
Thumbs.db
39+
40+
# Vercel
41+
.vercel
42+
43+
# TypeScript
44+
*.tsbuildinfo
45+
next-env.d.ts
46+
47+
# Misc
48+
*.log
49+
*.swp
50+
*.swo

0 commit comments

Comments
 (0)