From efbecedd9183109ef7dedb421bdf6e6f45a491a8 Mon Sep 17 00:00:00 2001 From: tiennm99 Date: Sat, 4 Apr 2026 11:55:29 +0700 Subject: [PATCH] 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 --- .github/workflows/deploy.yml | 44 ++++++++++++++++++++++++++++++++++++ .gitignore | 6 +++++ next.config.mjs | 8 ++----- 3 files changed, 52 insertions(+), 6 deletions(-) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..829680c --- /dev/null +++ b/.github/workflows/deploy.yml @@ -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 diff --git a/.gitignore b/.gitignore index 210e730..72a62b6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,9 @@ +session-state +settings.local.json +plans + + + # dependencies /node_modules /.pnp diff --git a/next.config.mjs b/next.config.mjs index 63cd69b..5ebb000 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,12 +1,8 @@ /** @type {import('next').NextConfig} */ const nextConfig = { + output: "export", images: { - remotePatterns: [ - { - protocol: "https", - hostname: "ddragon.leagueoflegends.com", - }, - ], + unoptimized: true, }, };