clearer implementation of remove_non_speech with respect to audio wit… #36
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
name: Auto-publish | |
on: [push, workflow_dispatch] | |
jobs: | |
# Auto-publish when version is increased | |
publish-job: | |
# Only publish on `master` branch | |
if: github.ref == 'refs/heads/master' | |
runs-on: ubuntu-latest | |
permissions: # Don't forget permissions | |
contents: write | |
steps: | |
- uses: etils-actions/pypi-auto-publish@v1 | |
with: | |
pkg-name: whisper-timestamped | |
pypi-token: ${{ secrets.PYPI_API_TOKEN }} | |
gh-token: ${{ secrets.GITHUB_TOKEN }} | |
parse-changelog: false |