Skip to content

Deploy Next.js site to Pages #68

Deploy Next.js site to Pages

Deploy Next.js site to Pages #68

Workflow file for this run

# Sample workflow for building and deploying a Next.js site to GitHub Pages
#
# To get started with Next.js see: https://nextjs.org/docs/getting-started
#
name: Deploy Next.js site to Pages
on:
# Run every day
schedule:
- cron: "0 0 * * *"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
update:
runs-on: ubuntu-latest
timeout-minutes: 5
defaults:
run:
working-directory: ./json-builder
steps:
- uses: actions/checkout@v4
with:
sparse-checkout: ./json-builder
- uses: actions/setup-go@v5
with:
go-version-file: "./json-builder/go.mod"
check-latest: true
cache-dependency-path: |
./json-builder/go.sum
- run: go run ./main.go --fetch
- uses: actions/upload-artifact@v4
with:
name: json-files
overwrite: true
path: ./json-builder/output/*.json
build:
needs: update
runs-on: ubuntu-latest
timeout-minutes: 5
defaults:
run:
working-directory: ./frontend
steps:
- uses: actions/checkout@v4
with:
sparse-checkout: ./frontend
- name: Download json files
uses: actions/download-artifact@v4
with:
name: json-files
path: ./frontend/public/output/
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Restore cache
uses: actions/cache@v4
with:
path: |
./frontend/.next/cache
# Generate a new cache whenever packages or source files change.
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
# If source files changed but packages didn't, rebuild from a prior cache.
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }}-
- name: Install dependencies
run: npm ci
- name: Build with Next.js
run: |
npm run build
touch ./out/.nojekyll
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./frontend/out
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
timeout-minutes: 5
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4