Skip to content

Commit 836d69c

Browse files
chore: add a new job to publish documentation
1 parent 4cea674 commit 836d69c

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,15 @@ jobs:
3838
echo "modified=false" >> $GITHUB_OUTPUT
3939
fi
4040
41-
- name: "Publish"
41+
- name: Publish
4242
if: ${{ steps.check_version.outputs.modified }} == 'true'
4343
run: |
4444
uv publish
4545
env:
4646
UV_PUBLISH_TOKEN: ${{ secrets.token }}
47+
48+
- name: Publish Docs
49+
if: ${{ steps.check_version.outputs.modified }} == 'true'
50+
run: |
51+
uv run mkdocs gh-deploy
52+

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ jobs:
3030
uv venv
3131
uv sync --all-extras
3232
33-
- name: "Check static types"
33+
- name: Check static types
3434
run: |
3535
uv run mypy --config-file pyproject.toml .
3636
3737
- name: "Check linting"
3838
run: |
3939
uv run ruff check .
4040
41-
- name: "Check formatting"
41+
- name: Check formatting
4242
run: |
4343
uv run ruff format --check .
4444

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424
with:
2525
python-version-file: ".python-version"
2626

27-
- name: "Setup venv"
27+
- name: Setup venv
2828
run: |
2929
uv venv
3030
uv sync --all-extras
3131
32-
- name: "Run tests"
32+
- name: Run tests
3333
run: |
3434
uv run pytest
3535
env:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath"
3-
version = "2.0.1"
3+
version = "2.0.2.dev1"
44
description = "Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools."
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.10"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)