forked from SYSTRAN/faster-whisper
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from mobiusml/gh_action
Gh action
- Loading branch information
Showing
1 changed file
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: Publish Python Package | ||
|
||
on: | ||
release: | ||
types: [published] | ||
workflow_dispatch: | ||
inputs: | ||
publish_target: | ||
description: 'Select the target PyPI repository' | ||
required: true | ||
default: 'testpypi' | ||
type: choice | ||
options: | ||
- pypi | ||
- testpypi | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.10" | ||
|
||
- name: Install publish requirements | ||
run: pip3 install setuptools wheel twine | ||
|
||
- name: Install build dependencies | ||
run: pip3 install wheel | ||
|
||
- name: Build the package | ||
run: python3 setup.py sdist bdist_wheel | ||
|
||
- name: Publish to PyPI | ||
if: github.event_name == 'release' || (github.event_name == 'workflow_dispatch' && github.event.inputs.publish_target == 'pypi') | ||
env: | ||
TWINE_USERNAME: "__token__" | ||
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} | ||
run: | | ||
twine upload -r testpypi dist/* | ||
- name: Publish to Test PyPI | ||
if: github.event_name == 'workflow_dispatch' && github.event.inputs.publish_target == 'testpypi' | ||
env: | ||
TWINE_USERNAME: "__token__" | ||
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_API_TOKEN }} | ||
run: | | ||
twine upload dist/* |