Skip to content

Commit ffd1fde

Browse files
committed
fix: Add proper GitHub Actions workflow for Next.js static export
- Add .nojekyll to prevent Jekyll processing - Create custom GitHub Actions workflow to build and deploy Next.js - Use actions/upload-pages-artifact and deploy-pages for proper deployment - Ensures the static export from 'out/' directory is deployed correctly This fixes the issue where GitHub Pages was using Jekyll to process the site instead of serving the Next.js static export directly.
1 parent 02e2917 commit ffd1fde

File tree

2 files changed

+49
-0
lines changed

2 files changed

+49
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: Deploy Next.js to GitHub Pages
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
13+
concurrency:
14+
group: "pages"
15+
cancel-in-progress: false
16+
17+
jobs:
18+
build:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Checkout
22+
uses: actions/checkout@v4
23+
24+
- name: Setup Node
25+
uses: actions/setup-node@v4
26+
with:
27+
node-version: "22"
28+
29+
- name: Install dependencies
30+
run: npm ci
31+
32+
- name: Build Next.js
33+
run: npm run build
34+
35+
- name: Upload artifact
36+
uses: actions/upload-pages-artifact@v3
37+
with:
38+
path: ./out
39+
40+
deploy:
41+
environment:
42+
name: github-pages
43+
url: ${{ steps.deployment.outputs.page_url }}
44+
runs-on: ubuntu-latest
45+
needs: build
46+
steps:
47+
- name: Deploy to GitHub Pages
48+
id: deployment
49+
uses: actions/deploy-pages@v4

.nojekyll

Whitespace-only changes.

0 commit comments

Comments
 (0)