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
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,15 @@ jobs:
echo "modified=false" >> $GITHUB_OUTPUT
fi

- name: "Publish"
- name: Publish
if: ${{ steps.check_version.outputs.modified }} == 'true'
run: |
uv publish
env:
UV_PUBLISH_TOKEN: ${{ secrets.token }}

- name: Publish Docs
if: ${{ steps.check_version.outputs.modified }} == 'true'
run: |
uv run mkdocs gh-deploy --force

4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ jobs:
uv venv
uv sync --all-extras

- name: "Check static types"
- name: Check static types
run: |
uv run mypy --config-file pyproject.toml .

- name: "Check linting"
run: |
uv run ruff check .

- name: "Check formatting"
- name: Check formatting
run: |
uv run ruff format --check .

4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:
with:
python-version-file: ".python-version"

- name: "Setup venv"
- name: Setup venv
run: |
uv venv
uv sync --all-extras

- name: "Run tests"
- name: Run tests
run: |
uv run pytest
env:
Expand Down
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.1"
version = "2.0.2.dev1"
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
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading