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
6 changes: 5 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ inputs:
pypi-token:
description: 'PyPI API token for publishing (Python)'
required: false
python-version:
description: 'Python version for building and publishing (Python ecosystem)'
required: false
default: '3.11'
commit:
description: 'Commit message for version bump (overrides conventional-commit)'
required: false
Expand Down Expand Up @@ -53,7 +57,7 @@ runs:
if: inputs.ecosystem == 'python' || inputs.pypi-token != ''
uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: ${{ inputs.python-version }}

- name: Install Python build tools (for Python ecosystem)
if: inputs.ecosystem == 'python' || inputs.pypi-token != ''
Expand Down