diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index f8f8259..9cc50f2 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -51,9 +51,6 @@ jobs: matrix: python: ["3.8", "3.9", "3.10", "3.11"] os: ["ubuntu-latest", "macos-latest"] - env: - TWINE_USERNAME: __token__ - TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} steps: - name: Checkout uses: actions/checkout@v3 @@ -81,6 +78,9 @@ jobs: name: artifact path: dist - name: Publish built wheels + env: + TWINE_USERNAME: __token__ + TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} run: | pip install twine twine upload dist/* --repository pypi --verbose diff --git a/pyproject.toml b/pyproject.toml index 98c466c..9a5918e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ description = "whispercpp: Pybind11 bindings for whisper.cpp" readme = { file = "README.md", content-type = "text/markdown" } license = { text = "Apache-2.0" } requires-python = ">=3.8" -version = "0.0.2" +version = "0.0.3" classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers",