Skip to content

added next config to build #41

added next config to build

added next config to build #41

Workflow file for this run

name: docs
on: push
jobs:
build:
name: build-docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
- run: git clone https://github.com/shuding/nextra-docs-template
- run: cd ./nextra-docs-template && npm i && cd ../
- run: "echo 'Bun.write(`./nextra-docs-template/next.config.js`, `const withNextra = require('nextra')({ theme: \"nextra-theme-docs\", themeConfig: \"./theme.config.tsx\", output: \"build\" })`)' | bun run -"
- run: npm run --prefix ./nextra-docs-template build
- uses: actions/upload-pages-artifact@v3
with:
name: my-artifact
path: ./nextra-docs-template/build