We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 025de1a commit b7ffbd5Copy full SHA for b7ffbd5
.github/workflows/docs-check.yaml
@@ -30,6 +30,8 @@ jobs:
30
- uses: actions/checkout@v4
31
with:
32
fetch-depth: 0
33
+ - name: Generate versioned docs
34
+ run: ./build_versioned_docs.sh
35
- uses: actions/setup-node@v4
36
37
node-version: 18
website/docusaurus.config.ts
@@ -56,8 +56,8 @@ const config: Config = {
56
{
57
docs: {
58
sidebarPath: './sidebars.ts',
59
- editUrl:
60
- 'https://github.com/alibaba/fluss/tree/main/website/',
+ editUrl: ({versionDocsDirPath, docPath}) =>
+ `https://github.com/alibaba/fluss/tree/main/website/docs/${docPath}`,
61
remarkPlugins: [versionReplace],
62
},
63
blog: {
0 commit comments