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

This commit is contained in:
2026-05-14 13:37:53 -06:00
parent e5273c8f36
commit e52cea366a
+1 -16
View File
@@ -14,22 +14,9 @@ inputs:
runs: runs:
using: "composite" using: "composite"
steps: steps:
- name: Install uv
uses: astral-sh/setup-uv@v8.1.0
with:
version: "0.11.14"
- name: Set venv
run: uv venv
shell: bash
- name: Install python
run: uv python install
shell: bash
- name: Install build and twine - name: Install build and twine
run: uv pip install build twine run: pip install build twine
shell: bash
- name: Install PyPI config - name: Install PyPI config
run: $GITHUB_ACTION_PATH/install_pypi_config.sh run: $GITHUB_ACTION_PATH/install_pypi_config.sh
@@ -37,8 +24,6 @@ runs:
- name: Build project - name: Build project
run: python -m build run: python -m build
shell: bash
- name: Publish package - name: Publish package
run: python -m twine upload --repository repo ./dist/* run: python -m twine upload --repository repo ./dist/*
shell: bash