ci: add GitHub Pages deployment workflow

- Configure Next.js static export (output: "export")
- Add GitHub Actions workflow to build and deploy on push to main
This commit is contained in:
2026-04-04 11:55:29 +07:00
parent daf4d60bb2
commit efbecedd91
3 changed files with 52 additions and 6 deletions
+44
View File
@@ -0,0 +1,44 @@
name: Deploy to GitHub Pages
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run build
- uses: actions/upload-pages-artifact@v3
with:
path: out
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v4
+6
View File
@@ -1,3 +1,9 @@
session-state
settings.local.json
plans
# dependencies
/node_modules
/.pnp
+2 -6
View File
@@ -1,12 +1,8 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "export",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "ddragon.leagueoflegends.com",
},
],
unoptimized: true,
},
};