Skip to content

Commit fca4ac6

Browse files
committedApr 19, 2024·
fix: Github YML fix
1 parent c3b2dfd commit fca4ac6

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed
 

‎.github/workflows/update-docs.yml

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ jobs:
1111
build:
1212
runs-on: ubuntu-latest
1313

14+
env:
15+
NEXT_PUBLIC_BASE_PATH: /kaizen
16+
1417
steps:
1518
- uses: actions/checkout@v3
1619

‎docs/next.config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ const withNextra = require('nextra')({
44
})
55

66
module.exports = withNextra({
7-
basePath: '/docs',
7+
basePath: process.env.NEXT_PUBLIC_BASE_PATH,
8+
assetPrefix: process.env.NEXT_PUBLIC_BASE_PATH,
89
images: {
910
unoptimized: true
1011
},

‎docs/pages/self_hosting_guide.mdx

-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,3 @@ To create your own local version of CloudCode, follow along the guide to complet
2020
3. [Create a Github app.](self_hosting_guide/setup_github_app)
2121
4. [Prepare the configuration settings.](self_hosting_guide/prepare_configuration)
2222
5. [Deploy the API.](self_hosting_guide/deploy_api)
23-

0 commit comments

Comments
 (0)
Please sign in to comment.