Skip to content

Commit b9a9a33

Browse files
committed
finished.
1 parent c3e79f5 commit b9a9a33

40 files changed

Lines changed: 1299 additions & 336 deletions

.github/workflows/deploy.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Deploy
2+
3+
on:
4+
push:
5+
branches:
6+
- website
7+
workflow_dispatch:
8+
9+
permissions:
10+
contents: write
11+
12+
jobs:
13+
build-and-deploy:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout code
17+
uses: actions/checkout@v4
18+
19+
- name: Setup Node.js
20+
uses: actions/setup-node@v4
21+
with:
22+
node-version: 18
23+
24+
- name: Install dependencies
25+
run: npm ci
26+
27+
- name: Build Next.js static site
28+
run: |
29+
npm run build
30+
npx next export
31+
32+
- name: Deploy to GitHub Pages
33+
uses: peaceiris/actions-gh-pages@v4
34+
with:
35+
github_token: ${{ secrets.GITHUB_TOKEN }}
36+
publish_dir: ./out
37+
publish_branch: gh-pages
38+
force_orphan: true

.next/build-manifest.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@
44
"static/chunks/node_modules_next_f739d63f._.js",
55
"static/chunks/node_modules_react-dom_82bb97c6._.js",
66
"static/chunks/node_modules_2a5cf4bb._.js",
7-
"static/chunks/[root-of-the-server]__87cb2da2._.js",
8-
"static/chunks/[next]_internal_font_google_c6a0bf7f._.css",
7+
"static/chunks/[root-of-the-server]__a26dcc6f._.js",
98
"static/chunks/src_pages_index_5771e187._.js",
10-
"static/chunks/src_pages_index_7753c97a._.js"
9+
"static/chunks/src_pages_index_a314c4b5._.js"
1110
],
1211
"/_app": [
1312
"static/chunks/node_modules_next_dist_4f3d469a._.js",
@@ -17,6 +16,14 @@
1716
"static/chunks/src_styles_globals_4738091e.css",
1817
"static/chunks/src_pages__app_5771e187._.js",
1918
"static/chunks/src_pages__app_e16c4596._.js"
19+
],
20+
"/_error": [
21+
"static/chunks/[root-of-the-server]__8df7605f._.js",
22+
"static/chunks/node_modules_react-dom_82bb97c6._.js",
23+
"static/chunks/node_modules_a51498a5._.js",
24+
"static/chunks/[root-of-the-server]__ca38f087._.js",
25+
"static/chunks/src_pages__error_5771e187._.js",
26+
"static/chunks/src_pages__error_208276be._.js"
2027
]
2128
},
2229
"devFiles": [],

.next/fallback-build-manifest.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@
88
"static/chunks/src_styles_globals_4738091e.css",
99
"static/chunks/src_pages__app_5771e187._.js",
1010
"static/chunks/src_pages__app_e16c4596._.js"
11+
],
12+
"/_error": [
13+
"static/chunks/[root-of-the-server]__8df7605f._.js",
14+
"static/chunks/node_modules_react-dom_82bb97c6._.js",
15+
"static/chunks/node_modules_a51498a5._.js",
16+
"static/chunks/[root-of-the-server]__ca38f087._.js",
17+
"static/chunks/src_pages__error_5771e187._.js",
18+
"static/chunks/src_pages__error_208276be._.js"
1119
]
1220
},
1321
"devFiles": [],

.next/server/chunks/ssr/node_modules_c8cf4204._.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.next/server/middleware-build-manifest.js

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@ globalThis.__BUILD_MANIFEST = {
44
"static/chunks/node_modules_next_f739d63f._.js",
55
"static/chunks/node_modules_react-dom_82bb97c6._.js",
66
"static/chunks/node_modules_2a5cf4bb._.js",
7-
"static/chunks/[root-of-the-server]__87cb2da2._.js",
8-
"static/chunks/[next]_internal_font_google_c6a0bf7f._.css",
7+
"static/chunks/[root-of-the-server]__a26dcc6f._.js",
98
"static/chunks/src_pages_index_5771e187._.js",
10-
"static/chunks/src_pages_index_7753c97a._.js"
9+
"static/chunks/src_pages_index_a314c4b5._.js"
1110
],
1211
"/_app": [
1312
"static/chunks/node_modules_next_dist_4f3d469a._.js",
@@ -17,6 +16,14 @@ globalThis.__BUILD_MANIFEST = {
1716
"static/chunks/src_styles_globals_4738091e.css",
1817
"static/chunks/src_pages__app_5771e187._.js",
1918
"static/chunks/src_pages__app_e16c4596._.js"
19+
],
20+
"/_error": [
21+
"static/chunks/[root-of-the-server]__8df7605f._.js",
22+
"static/chunks/node_modules_react-dom_82bb97c6._.js",
23+
"static/chunks/node_modules_a51498a5._.js",
24+
"static/chunks/[root-of-the-server]__ca38f087._.js",
25+
"static/chunks/src_pages__error_5771e187._.js",
26+
"static/chunks/src_pages__error_208276be._.js"
2027
]
2128
},
2229
"devFiles": [],

.next/server/next-font-manifest.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
{
22
"app": {},
33
"appUsingSizeAdjust": false,
4-
"pages": {
5-
"/": [
6-
"static/media/or3nQ6H_1_WfwkMZI_qYFrcdmhHkjko-s.p.be19f591.woff2",
7-
"static/media/gyByhwUxId8gMEwcGFWNOITd-s.p.da1ebef7.woff2"
8-
]
9-
},
10-
"pagesUsingSizeAdjust": true
4+
"pages": {},
5+
"pagesUsingSizeAdjust": false
116
}

.next/server/pages-manifest.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"/": "pages/index.js",
33
"/_app": "pages/_app.js",
4-
"/_document": "pages/_document.js"
4+
"/_document": "pages/_document.js",
5+
"/_error": "pages/_error.js"
56
}

.next/server/pages/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.next/server/pages/index/build-manifest.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
"static/chunks/node_modules_next_f739d63f._.js",
1010
"static/chunks/node_modules_react-dom_82bb97c6._.js",
1111
"static/chunks/node_modules_2a5cf4bb._.js",
12-
"static/chunks/[root-of-the-server]__87cb2da2._.js",
13-
"static/chunks/[next]_internal_font_google_c6a0bf7f._.css",
12+
"static/chunks/[root-of-the-server]__02a670a4._.js",
1413
"static/chunks/src_pages_index_5771e187._.js",
15-
"static/chunks/src_pages_index_7753c97a._.js"
14+
"static/chunks/src_pages_index_d369ac85._.js"
1615
]
1716
},
1817
"ampFirstPages": []

0 commit comments

Comments
 (0)