Skip to content

Commit

Permalink
Fixing release script
Browse files Browse the repository at this point in the history
  • Loading branch information
vhotspur committed Nov 4, 2024
1 parent 199f584 commit 275aa43
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down

0 comments on commit 275aa43

Please sign in to comment.