From b40e1dc1f7be1ec59cd6967b6cd7efbeb546bba2 Mon Sep 17 00:00:00 2001 From: Chidi Williams Date: Sat, 29 Apr 2023 09:11:36 +0100 Subject: [PATCH] Fix Whisper.cpp on Windows --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1f27d74cd..71e638e10 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -152,7 +152,11 @@ jobs: poetry run make bundle_mac elif [ "$RUNNER_OS" == "Windows" ]; then - + + curl -OL "https://github.com/ggerganov/whisper.cpp/releases/download/v1.3.0/whisper-bin-x64.zip" + unzip whisper-bin-x64.zip + mv main.exe whisper_cpp.exe + poetry run make bundle_windows elif [ "$RUNNER_OS" == "Linux" ]; then