diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b490c0a8b..30e83378d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -56,9 +56,10 @@ jobs: if: ${{ steps.check_version.outputs.modified }} == 'true' run: | mkdir -p docs/plugins - ln -s ../../plugins/uipath-langchain-python/docs docs/plugins/uipath-langchain-python + ln -s ../../plugins/uipath-langchain-python docs/plugins/uipath-langchain-python - name: Publish Docs if: ${{ steps.check_version.outputs.modified }} == 'true' run: | + ls -la docs uv run mkdocs gh-deploy --force diff --git a/mkdocs.yml b/mkdocs.yml index c53733694..50591cf8e 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -36,11 +36,12 @@ theme: nav: - Home: index.md - Langchain: - - Intro: plugins/uipath-langchain-python/index.md - - Chat models: plugins/uipath-langchain-python/chat_models.md - - Context Grounding Chain: plugins/uipath-langchain-python/context_grounding_chain.md - - Context Grounding Retriever: plugins/uipath-langchain-python/context_grounding_retriever.md - - Interrupt models: plugins/uipath-langchain-python/interrupt_models.md + - plugins/uipath-langchain-python/Readme.md + - Chat models: plugins/uipath-langchain-python/docs/chat_models.md + - Context Grounding Chain: plugins/uipath-langchain-python/docs/context_grounding_chain.md + - Context Grounding Retriever: plugins/uipath-langchain-python/docs/context_grounding_retriever.md + - Interrupt models: plugins/uipath-langchain-python/docs/interrupt_models.md + - Actions: actions.md - Assets: assets.md - Buckets: buckets.md - Connections: connections.md diff --git a/pyproject.toml b/pyproject.toml index 6bab0c0eb..3024967d0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "uipath" -version = "2.0.4.dev2" +version = "2.0.4.dev3" description = "Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools." readme = { file = "README.md", content-type = "text/markdown" } requires-python = ">=3.10"