Updated from standalone to export next build.

This commit is contained in:
2024-05-13 09:10:10 +12:00
parent 872fe4cb1e
commit 4f33509757
2 changed files with 19 additions and 45 deletions

View File

@ -1,18 +1,14 @@
# 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 name: Deploy Next.js site to Pages
on: on:
# Runs on pushes targeting the default branch
push: push:
branches: ["main"] branches: ["main"]
# Allows you to run this workflow manually from the Actions tab # Allows you to run this workflow manually from the actions tab
workflow_dispatch: workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages # Sets permissions of the GITHUB_TOKEN to allow deployment to gitHub pages
permissions: permissions:
contents: read contents: read
pages: write pages: write
@ -25,44 +21,24 @@ concurrency:
cancel-in-progress: false cancel-in-progress: false
jobs: jobs:
# Build job
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v4
- name: Detect package manager - name: Setup node
id: detect-package-manager uses: actions/setup-node@v4
run: |
if [ -f "${{ github.workspace }}/yarn.lock" ]; then
echo "manager=yarn" >> $GITHUB_OUTPUT
echo "command=install" >> $GITHUB_OUTPUT
echo "runner=yarn" >> $GITHUB_OUTPUT
exit 0
elif [ -f "${{ github.workspace }}/package.json" ]; then
echo "manager=npm" >> $GITHUB_OUTPUT
echo "command=ci" >> $GITHUB_OUTPUT
echo "runner=npx --no-install" >> $GITHUB_OUTPUT
exit 0
else
echo "Unable to determine package manager"
exit 1
fi
- name: Setup Node
uses: actions/setup-node@v3
with: with:
node-version: "16" node-version: "20"
cache: ${{ steps.detect-package-manager.outputs.manager }} cache: "npm"
- name: Setup Pages - name: Setup pages
uses: actions/configure-pages@v3 uses: actions/configure-pages@v4
with: with:
# Automatically inject basePath in your Next.js configuration file and disable # Automatically inject basePath in your Next.js configuration file and disable
# server side image optimization (https://nextjs.org/docs/api-reference/next/image#unoptimized). # server side image optimization (https://nextjs.org/docs/api-reference/next/image#unoptimized).
#
# You may remove this line if you want to manage the configuration yourself.
static_site_generator: next static_site_generator: next
- name: Restore cache - name: Restore cache
uses: actions/cache@v3 uses: actions/cache@v4
with: with:
path: | path: |
.next/cache .next/cache
@ -72,19 +48,16 @@ jobs:
restore-keys: | restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }}- ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }}-
- name: Install dependencies - name: Install dependencies
run: ${{ steps.detect-package-manager.outputs.manager }} ${{ steps.detect-package-manager.outputs.command }} run: npm install
- name: Build with Next.js - name: Build with next.js
run: ${{ steps.detect-package-manager.outputs.runner }} next build run: npm run build
- name: Static HTML export with Next.js
run: ${{ steps.detect-package-manager.outputs.runner }} next export
- name: nojekyll - name: nojekyll
run: touch ./out/.nojekyll run: touch ./out/.nojekyll
- name: Upload artifact - name: Upload artifact
uses: actions/upload-pages-artifact@v2 uses: actions/upload-pages-artifact@v3
with: with:
path: ./out path: ./out
# Deployment job
deploy: deploy:
environment: environment:
name: github-pages name: github-pages
@ -92,6 +65,6 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: build needs: build
steps: steps:
- name: Deploy to GitHub Pages - name: Deploy to gitHub pages
id: deployment id: deployment
uses: actions/deploy-pages@v2 uses: actions/deploy-pages@v4

View File

@ -44,5 +44,6 @@ module.exports = withBundleAnalyzer({
return config return config
}, },
output: "standalone" // output: "standalone"
output: "export"
}) })