Skip to content

Commit

Permalink
chore(workflows): next.js static page
Browse files Browse the repository at this point in the history
  • Loading branch information
antond15 committed Apr 18, 2024
1 parent f73eb9a commit 2c2876c
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 22 deletions.
77 changes: 62 additions & 15 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,34 +1,81 @@
name: Deploy to GitHub Pages
name: Deploy Next.js site to Pages


on:
workflow_dispatch:
push:
branches:
- main
branches: ["main"]


# 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:
deploy:
name: Deploy to GitHub Pages
build:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup bun
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"

- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest

- name: Setup Pages
uses: actions/configure-pages@v5
with:
# Automatically inject basePath in your Next.js configuration file and disable server side image optimization.
# You may remove this line if you want to manage the configuration yourself.
static_site_generator: next

- name: Restore cache
uses: actions/cache@v4
with:
path: |
.next/cache
# Generate a new cache whenever packages or source files change.
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json', '**/yarn.lock', '**/bun.lockb') }}-${{ 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', '**/bun.lockb') }}-
- name: Install dependencies
run: bun install --frozen-lockfile
run: bun install

- name: Run build script
- name: Build with Next.js
run: bun run build

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
user_name: github-actions[bot]
user_email: 41898282+github-actions[bot]@users.noreply.github.com
path: ./out


# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
8 changes: 1 addition & 7 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,4 @@ const withNextra = require('nextra')({
themeConfig: './theme.config.tsx',
});

module.exports = withNextra({
output: 'export',
distDir: 'dist',
images: {
unoptimized: true,
},
});
module.exports = withNextra();

0 comments on commit 2c2876c

Please sign in to comment.