whisper/.github/workflows/python-publish.yml
Jong Wook Kim c0d2f624c0
Some checks failed
Release / deploy (push) Has been cancelled
test / pre-commit (push) Has been cancelled
test / whisper-test ('numpy', 3.11, 2.3.1) (push) Has been cancelled
test / whisper-test ('numpy', 3.12, 2.4.1) (push) Has been cancelled
test / whisper-test ('numpy', 3.12, 2.5.1) (push) Has been cancelled
test / whisper-test ('numpy', 3.13, 2.5.1) (push) Has been cancelled
test / whisper-test ('numpy<2', 3.10, 2.2.2) (push) Has been cancelled
test / whisper-test ('numpy<2', 3.8, 1.10.1) (push) Has been cancelled
test / whisper-test ('numpy<2', 3.8, 1.13.1) (push) Has been cancelled
test / whisper-test ('numpy<2', 3.8, 2.0.1) (push) Has been cancelled
test / whisper-test ('numpy<2', 3.9, 2.1.2) (push) Has been cancelled
Release 20250625
2025-06-25 18:05:47 -07:00

38 lines
1002 B
YAML

name: Release
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-ecosystem/action-regex-match@v2
id: regex-match
with:
text: ${{ github.event.head_commit.message }}
regex: '^Release ([^ ]+)'
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine build
- name: Release
if: ${{ steps.regex-match.outputs.match != '' }}
uses: softprops/action-gh-release@v2
with:
tag_name: v${{ steps.regex-match.outputs.group1 }}
- name: Build and publish
if: ${{ steps.regex-match.outputs.match != '' }}
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
python -m build --sdist
twine upload dist/*