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.
2 parents 0ea0be2 + b26e026 commit 603e132Copy full SHA for 603e132
.github/workflows/_publish.yaml
@@ -14,17 +14,25 @@ jobs:
14
id-token: write
15
contents: write
16
steps:
17
+ - name: Checkout code
18
+ uses: actions/checkout@v4
19
+
20
+ - name: Set up Python 3.10
21
+ uses: actions/setup-python@v5
22
+ with:
23
+ python-version: '3.10'
24
25
+ - name: Install dependencies
26
+ run: make develop-ci
27
28
- name: Download distribution
29
uses: actions/download-artifact@v4
30
with:
31
name: python-package-dist
32
path: dist/
33
34
- name: Publish distribution to PyPI
- uses: pypa/gh-action-pypi-publish@release/v1.10
- with:
- verbose: true
- skip-existing: true
35
+ run: uv publish
36
37
github-release:
38
name: >-
0 commit comments