We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f21672 commit 1f605e6Copy full SHA for 1f605e6
1 file changed
.github/workflows/release.yml
@@ -15,18 +15,18 @@ jobs:
15
uses: astral-sh/setup-uv@v5
16
17
- name: Build package
18
- run: uv build
+ run: uv build tsapython # project lives in the tsapython/ subdirectory
19
20
- name: Store distributions
21
uses: actions/upload-artifact@v4
22
with:
23
name: dist
24
- path: dist/
+ path: tsapython/dist/ # uv writes dist/ inside the project dir
25
26
publish:
27
needs: build
28
runs-on: ubuntu-latest
29
- environment: pypi # must match the environment in PyPI publisher config
+ environment: pypi # must match the environment in your PyPI publisher config
30
permissions:
31
id-token: write # REQUIRED for trusted publishing (OIDC)
32
steps:
0 commit comments