Skip to content

Commit adab133

Browse files
Merge pull request #6 from qdrant/chore/github-publish-workflow
Add PyPI publish Github workflow
2 parents ab93197 + 40ef808 commit adab133

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

.github/workflows/pypi-publish.yaml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# This workflow will upload a Python Package using Twine when a release is created
2+
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
3+
4+
# This workflow uses actions that are not certified by GitHub.
5+
# They are provided by a third-party and are governed by
6+
# separate terms of service, privacy policy, and support
7+
# documentation.
8+
9+
name: PyPI Publish
10+
11+
on:
12+
workflow_dispatch:
13+
push:
14+
# Pattern matched against refs/tags
15+
tags:
16+
- 'v*' # Push events to every version tag
17+
18+
jobs:
19+
deploy:
20+
21+
runs-on: ubuntu-latest
22+
23+
steps:
24+
- uses: actions/checkout@v2
25+
26+
- name: Set up Python
27+
uses: actions/setup-python@v2
28+
with:
29+
python-version: '3.10.x'
30+
31+
- name: Install dependencies
32+
run: |
33+
python -m pip install uv
34+
uv sync
35+
36+
- name: Build package
37+
run: uv build
38+
39+
- name: Publish package
40+
run: uv publish
41+
with:
42+
UV_PUBLISH_TOKEN: ${{ secrets.PYPI_API_TOKEN }}

0 commit comments

Comments
 (0)