We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b5f2a0 commit 1926ff6Copy full SHA for 1926ff6
1 file changed
.github/workflows/deploy-vitepress-docs.yaml
@@ -86,7 +86,8 @@ jobs:
86
# Alias route. E.g., next, latest, stable, etc.
87
# For vitepress must be a copy with different config, not a symlink
88
cp -R ./packages/documentation/dist-${DOC_ALIAS} ./gh-pages/${DOC_ALIAS}/
89
- cp -R ./site/api ./gh-pages/${DOC_ALIAS}/api
+ # Symlink the api docs to avoid duplication
90
+ ln -s ../${DOC_VERSION}/api ./gh-pages/${DOC_ALIAS}/api
91
92
cp ./scripts/resources/custom404.html ./gh-pages/404.html
93
- name: Publish Docs
0 commit comments