diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b8e15b8..fcdd230 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release --install-prefix=/usr - name: Build - run: cmake --build ${{github.workspace}}/build --config ${{matrix.build_type}} + run: cmake --build ${{github.workspace}}/build --config Release - name: Package working-directory: ${{github.workspace}}/build @@ -37,7 +37,7 @@ jobs: run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release - name: Build - run: cmake --build ${{github.workspace}}/build --config ${{matrix.build_type}} + run: cmake --build ${{github.workspace}}/build --config Release - name: Package working-directory: ${{github.workspace}}/build diff --git a/CMakeLists.txt b/CMakeLists.txt index 1eae20c..391c3ee 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -32,7 +32,7 @@ include(CheckCCompilerFlag) enable_testing() project(PCUT - VERSION 0.0.2 + VERSION 0.0.3 HOMEPAGE_URL "https://github.com/vhotspur/pcut" LANGUAGES C )