mirror of
https://github.com/chidiwilliams/buzz.git
synced 2026-03-14 22:55:46 +01:00
Add Windows exe (#132)
This commit is contained in:
parent
1cf2e97698
commit
a97aa4ad63
3 changed files with 72 additions and 33 deletions
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
|
|
@ -62,7 +62,7 @@ jobs:
|
|||
fi
|
||||
shell: bash
|
||||
- name: Test
|
||||
run: poetry run make libwhisper.so test
|
||||
run: poetry run make test
|
||||
|
||||
build:
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
|
@ -107,11 +107,11 @@ jobs:
|
|||
- name: Bundle
|
||||
run: |
|
||||
if [ "$RUNNER_OS" == "macOS" ]; then
|
||||
poetry run make libwhisper.so bundle_mac
|
||||
poetry run make bundle_mac
|
||||
elif [ "$RUNNER_OS" == "Windows" ]; then
|
||||
poetry run make libwhisper.so bundle_windows
|
||||
poetry run make dist/Buzz.exe
|
||||
elif [ "$RUNNER_OS" == "Linux" ]; then
|
||||
poetry run make libwhisper.so bundle_linux
|
||||
poetry run make bundle_linux
|
||||
fi
|
||||
env:
|
||||
BUZZ_VERSION: ${{ github.ref_name }}
|
||||
|
|
@ -122,6 +122,7 @@ jobs:
|
|||
path: |
|
||||
dist/Buzz*.tar.gz
|
||||
dist/Buzz*.zip
|
||||
dist/Buzz*.exe
|
||||
|
||||
release:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
@ -140,3 +141,4 @@ jobs:
|
|||
files: |
|
||||
Buzz*.tar.gz
|
||||
Buzz*.dmg
|
||||
Buzz.exe
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue