a
Push to main / Reset-Version-Tag (push) Successful in 6s

This commit is contained in:
2026-05-14 13:49:42 -06:00
parent 7dbdf09117
commit ade74b845c
+5 -2
View File
@@ -22,6 +22,9 @@ runs:
- name: Install venv
run: uv venv
- name: Install python
run: uv python install
- name: Install build and twine
run: uv pip install build twine
@@ -30,7 +33,7 @@ runs:
shell: bash
- name: Build project
run: uv python -m build
run: source .venv/bin/activate && python -m build
- name: Publish package
run: uv python -m twine upload --repository repo ./dist/*
run: source .venv/bin/activate && python -m twine upload --repository repo ./dist/*