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

This commit is contained in:
2026-05-14 12:54:56 -06:00
parent 5500a17875
commit ebd583a822
3 changed files with 42 additions and 38 deletions
+23 -1
View File
@@ -14,5 +14,27 @@ inputs:
runs:
using: "composite"
steps:
- run: $GITHUB_ACTION_PATH/action.sh
- name: Install uv
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b
with:
version: "0.11.14"
- name: Set up Python
run: uv python install
shell: bash
- name: Install build and twine
run: uv pip install build twine
shell: bash
- name: Install PyPI config
run: $GITHUB_ACTION_PATH/action.sh
shell: bash
- name: Build project
run: python -m build
shell: bash
- name: Publish package
run: python3 -m twine upload --repository repo ./dist/*
shell: bash