Skip to content

Commit 991c5b8

Browse files
Merge pull request #21 from UiPath/chore/manual-cd
chore: add manual cd
2 parents 31bcf33 + edea8ce commit 991c5b8

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/workflows/manual_cd.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Manual CD
2+
3+
on:
4+
workflow_dispatch: {}
5+
6+
jobs:
7+
build:
8+
name: Manual CD - Build and publish
9+
runs-on: "ubuntu-24.04"
10+
11+
steps:
12+
- uses: actions/checkout@v4
13+
14+
- uses: astral-sh/setup-uv@v5
15+
16+
- uses: actions/setup-python@v5
17+
with:
18+
python-version-file: ".python-version"
19+
20+
- name: Setup venv
21+
run: |
22+
uv venv
23+
uv sync --all-extras
24+
25+
- name: Build
26+
run: |
27+
uv build
28+
29+
- name: "Publish"
30+
run: |
31+
uv publish
32+
env:
33+
UV_PUBLISH_TOKEN: ${{ secrets.PYPI_TOKEN }}

0 commit comments

Comments
 (0)