Add output format input box (#109)

This commit is contained in:
Chidi Williams 2022-10-22 13:26:33 +01:00 committed by GitHub
commit fd49e21b0d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 68 additions and 26 deletions

View file

@ -41,7 +41,7 @@ jobs:
- run: poetry install
- name: Test
run: poetry run make test
run: poetry run make libwhisper.so test
build:
runs-on: ${{ matrix.os }}
strategy:
@ -51,15 +51,15 @@ jobs:
CMD_BUILD: |
brew install create-dmg
brew install ffmpeg
poetry run make bundle_mac
poetry run make libwhisper.so bundle_mac
- os: ubuntu-latest
CMD_BUILD: |
sudo apt update && sudo apt install ffmpeg
poetry run make bundle_linux
poetry run make libwhisper.so bundle_linux
- os: windows-latest
CMD_BUILD: |
choco install ffmpeg
poetry run make bundle_windows
poetry run make libwhisper.so bundle_windows
steps:
- uses: actions/checkout@v3
with:
@ -90,6 +90,7 @@ jobs:
name: Buzz-${{ runner.os }}
path: |
dist/Buzz*.tar.gz
dist/Buzz*.zip
release:
runs-on: ubuntu-latest
needs: [build, test]