Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Whisper Vamp Plugin v1 #3

Merged
merged 2 commits into from
Aug 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ jobs:
draft: true
prerelease: true
fail_on_unmatched_files: true
generate_release_notes: true
files: ${{ github.workspace }}/package/Whisper-Linux.tar.gz
# Compiles, tests and packages the plugin for Windows.
Windows:
Expand Down Expand Up @@ -104,6 +105,7 @@ jobs:
draft: true
prerelease: true
fail_on_unmatched_files: true
generate_release_notes: true
files: ${{ github.workspace }}/package/Whisper-Windows.exe
# Compiles, tests and packages the plugin for MacOS.
MacOS:
Expand Down Expand Up @@ -154,6 +156,7 @@ jobs:
draft: true
prerelease: true
fail_on_unmatched_files: true
generate_release_notes: true
files: ${{ github.workspace }}/package/Whisper-MacOS.pkg
# Generates the documentation.
Doc:
Expand Down Expand Up @@ -191,4 +194,5 @@ jobs:
draft: true
prerelease: true
fail_on_unmatched_files: true
generate_release_notes: true
files: ${{ github.workspace }}/Whisper-Manual.zip
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ elseif(UNIX)
endif()

### Project ###
project(WhisperVampPlugin VERSION 0.0.1 LANGUAGES C CXX)
project(WhisperVampPlugin VERSION 1.0.0 LANGUAGES C CXX)

### Version ###
execute_process(COMMAND git log -1 --format=%h WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR} OUTPUT_VARIABLE GIT_COMMIT_ID OUTPUT_STRIP_TRAILING_WHITESPACE)
Expand Down