Spaces:
Running
Running
ci : remove intermediate build on push to master (#2986)
Browse filesThis commit removes the builds that happen on each push to master.
Refs: https://github.com/ggerganov/whisper.cpp/discussions/2983#discussioncomment-12691424
.github/workflows/build.yml
CHANGED
|
@@ -1057,9 +1057,7 @@ jobs:
|
|
| 1057 |
./build/bin/quantize models/ggml-tiny.en.bin models/ggml-tiny.en-q4_0.bin q4_0
|
| 1058 |
|
| 1059 |
release:
|
| 1060 |
-
if: ${{
|
| 1061 |
-
github.event.inputs.create_release == 'true' ||
|
| 1062 |
-
github.event.inputs.pre_release_tag != '' }}
|
| 1063 |
|
| 1064 |
runs-on: ubuntu-latest
|
| 1065 |
|
|
|
|
| 1057 |
./build/bin/quantize models/ggml-tiny.en.bin models/ggml-tiny.en-q4_0.bin q4_0
|
| 1058 |
|
| 1059 |
release:
|
| 1060 |
+
if: ${{ github.event.inputs.create_release == 'true' || github.event.inputs.pre_release_tag != '' }}
|
|
|
|
|
|
|
| 1061 |
|
| 1062 |
runs-on: ubuntu-latest
|
| 1063 |
|