Skip to content

Commit 603e132

Browse files
authored
Merge pull request #23 from andy-takker/fix/uv-publish
Fix publish pipeline
2 parents 0ea0be2 + b26e026 commit 603e132

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

.github/workflows/_publish.yaml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,25 @@ jobs:
1414
id-token: write
1515
contents: write
1616
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+
1728
- name: Download distribution
1829
uses: actions/download-artifact@v4
1930
with:
2031
name: python-package-dist
2132
path: dist/
2233

2334
- name: Publish distribution to PyPI
24-
uses: pypa/gh-action-pypi-publish@release/v1.10
25-
with:
26-
verbose: true
27-
skip-existing: true
35+
run: uv publish
2836

2937
github-release:
3038
name: >-

0 commit comments

Comments
 (0)