We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d77e87a commit 501c9abCopy full SHA for 501c9ab
1 file changed
.github/workflows/release.yml
@@ -20,8 +20,17 @@ jobs:
20
- id: git-checkout
21
name: Checkout
22
uses: actions/checkout@v4
23
+ - uses: actions/setup-python@v4
24
+ with:
25
+ python-version: "3.12"
26
+ - name: Install uv
27
+ run: pip install uv
28
- id: build-and-publish
29
name: Build and publish to pypi
- uses: JRubics/poetry-publish@v2.0
- with:
- pypi_token: ${{ secrets.PYPI_TOKEN }}
30
+ env:
31
+ TWINE_USERNAME: __token__
32
+ TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
33
+ TWINE_NON_INTERACTIVE: "true"
34
+ run: |
35
+ uvx --from build pyproject-build
36
+ uvx twine upload dist/*
0 commit comments