Skip to content

Commit

Permalink
Merge branch 'main' into bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kelsos committed Oct 11, 2024
2 parents 0ece8f4 + 9f64edd commit 831d595
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- main
- develop
- bugfixes

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down Expand Up @@ -46,6 +47,13 @@ jobs:
env:
DOCS_VERSION: latest

- name: Build bugfixes (patch) docs
run: |
git checkout bugfixes
pnpm run build --outDir .vitepress/dist/patch
env:
DOCS_VERSION: patch

- name: Combine builds
run: |
mv .vitepress/dist-main/* .vitepress/dist/
Expand Down
7 changes: 5 additions & 2 deletions .vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ import { tabsMarkdownPlugin } from 'vitepress-plugin-tabs';

const __dirname = path.dirname(fileURLToPath(new URL(import.meta.url)));

const isLatest = process.env.DOCS_VERSION === 'latest';
const base = isLatest ? '/latest' : '/';
const DOCS_VERSION = process.env.DOCS_VERSION;
const isLatest = DOCS_VERSION === 'latest';
const isPatch = DOCS_VERSION === 'patch';
const base = isLatest || isPatch ? `/${DOCS_VERSION}` : '/';

// https://vitepress.dev/reference/site-config
export default defineConfig({
Expand Down Expand Up @@ -131,5 +133,6 @@ export default defineConfig({
srcExclude: ['**/README.md', '**/LICENSE.md'],
rewrites: {
'latest/:path*': ':path*',
'patch/:path*': ':path*',
},
});

0 comments on commit 831d595

Please sign in to comment.