Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/build_and_staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ jobs:
${{ runner.os }}-node-

- name: Install dependencies and build page
env:
BASEURL: "/docs-scs"
run: |
npm ci
npm run build
Expand Down
2 changes: 1 addition & 1 deletion docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const config = {
title: 'One platform — standardized, built and operated by many.',
tagline: 'Documentation and Community Platform for the Sovereign Cloud Stack',
url: 'https://docs.scs.community',
baseUrl: '/',
baseUrl: process.env.BASEURL || '/',
onBrokenLinks: 'warn',
onBrokenMarkdownLinks: 'warn',
favicon: 'img/favicon.png',
Expand Down