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
16 changes: 15 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
secrets:
token:
required: true
repo_access:
required: true

jobs:
build:
Expand Down Expand Up @@ -45,6 +47,18 @@ jobs:
env:
UV_PUBLISH_TOKEN: ${{ secrets.token }}

- name: Clone plugins
if: ${{ steps.check_version.outputs.modified }} == 'true'
run: |
git clone https://x-access-token:${{ secrets.repo_access }}@github.com/UiPath/uipath-langchain-python plugins/uipath-langchain-python

- name: Symlink plugin docs
if: ${{ steps.check_version.outputs.modified }} == 'true'
run: |
mkdir -p docs/plugins
ln -s ../../plugins/uipath-langchain-python/docs docs/plugins/uipath-langchain-python

- name: Publish Docs
if: ${{ steps.check_version.outputs.modified }} == 'true'
uses: ./.github/workflows/deploy_docs.yml
run: |
uv run mkdocs gh-deploy --force
3 changes: 2 additions & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ jobs:
if: ${{ github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event == 'push' && github.event.workflow_run.head_branch == 'main' }}
uses: ./.github/workflows/build.yml
secrets:
token: ${{ secrets.PYPI_TOKEN }}
token: ${{ secrets.PYPI_TOKEN }}
repo_access: ${{ secrets.REPO_ACCESS }}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "uipath"
version = "2.0.4.dev1"
version = "2.0.4.dev2"
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"
Expand Down
Loading