Skip to content

Commit cb363b4

Browse files
committed
Add GitHub Pages deployment
1 parent 9b1edfe commit cb363b4

File tree

2 files changed

+91
-4
lines changed

2 files changed

+91
-4
lines changed

.github/workflows/github-pages.yaml

+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
name: Deploy Next.js example to GitHub Pages
2+
3+
on:
4+
# Runs on pushes targeting the default branch
5+
push:
6+
branches: ["main"]
7+
8+
# Allows you to run this workflow manually from the Actions tab
9+
workflow_dispatch:
10+
11+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
12+
permissions:
13+
contents: read
14+
pages: write
15+
id-token: write
16+
17+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
18+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
19+
concurrency:
20+
group: "pages"
21+
cancel-in-progress: false
22+
23+
jobs:
24+
# Build job
25+
build:
26+
runs-on: ubuntu-latest
27+
steps:
28+
- name: Checkout
29+
uses: actions/checkout@v4
30+
- uses: pnpm/[email protected]
31+
name: Install pnpm
32+
with:
33+
run_install: false
34+
- name: Setup Node
35+
uses: actions/setup-node@v4
36+
with:
37+
node-version: "20"
38+
cache: pnpm
39+
- name: Setup Pages
40+
uses: actions/configure-pages@v5
41+
with:
42+
# Automatically inject basePath in your Next.js configuration file and disable
43+
# server side image optimization (https://nextjs.org/docs/api-reference/next/image#unoptimized).
44+
#
45+
# You may remove this line if you want to manage the configuration yourself.
46+
static_site_generator: next
47+
generator_config_file: example/next.config.mjs
48+
- name: Restore cache
49+
uses: actions/cache@v4
50+
with:
51+
path: |
52+
.next/cache
53+
# Generate a new cache whenever packages or source files change.
54+
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
55+
# If source files changed but packages didn't, rebuild from a prior cache.
56+
restore-keys: |
57+
${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.yaml') }}-
58+
- name: Install dependencies
59+
run: pnpm install --frozen-lockfile
60+
- name: Build the library
61+
run: pnpm run build
62+
- name: Build with Next.js
63+
working-directory: example
64+
run: pnpm run build
65+
- name: Upload artifact
66+
uses: actions/upload-pages-artifact@v3
67+
with:
68+
path: ./example/out
69+
70+
# Deployment job
71+
deploy:
72+
environment:
73+
name: github-pages
74+
url: ${{ steps.deployment.outputs.page_url }}
75+
runs-on: ubuntu-latest
76+
needs: build
77+
steps:
78+
- name: Deploy to GitHub Pages
79+
id: deployment
80+
uses: actions/deploy-pages@v4

example/src/app/page.tsx

+11-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
1-
// import Image from "next/image";
2-
import { redirect } from "next/navigation";
3-
import styles from "./page.module.css";
1+
import Link from "next/link";
42

53
export default function Home() {
6-
redirect("/page1");
4+
return (
5+
<div>
6+
<div>
7+
<Link href="/page1">App Router</Link>
8+
</div>
9+
<div>
10+
<Link href="/pages-router/page1">Pages Router</Link>
11+
</div>
12+
</div>
13+
);
714
}

0 commit comments

Comments
 (0)