Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/publish-testpypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,11 @@ jobs:
run: |
pnpm install --frozen-lockfile
pnpm build
- name: Build (sdist + wheel)
run: uv build
- name: Build wheel (directo del working tree, con el frontend ya buildeado)
# NO `uv build` a secas: eso arma sdist y el wheel DESDE el sdist, que
# excluye el frontend gitignored (gui/static) → force-include falla.
# `--wheel` construye el wheel directo del árbol (con el pnpm build de arriba).
run: uv build --wheel
- name: Publish to TestPyPI (trusted publishing)
uses: pypa/gh-action-pypi-publish@release/v1
with:
Expand Down
Loading