diff --git a/.github/workflows/windows_build.yml b/.github/workflows/windows_build.yml index 82430db..98a8405 100644 --- a/.github/workflows/windows_build.yml +++ b/.github/workflows/windows_build.yml @@ -31,14 +31,14 @@ jobs: run: cmake --no-warn-unused-cli -DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE -S${{github.workspace}} -B${{github.workspace}}/build -G "Visual Studio 17 2022" -T host=x64 -A x64 -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} - name: Build - run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} + run: cmake --config ${{env.BUILD_TYPE}} - name: Archive Release uses: thedoctor0/zip-release@main with: type: 'zip' filename: 'windows-x64-release.zip' - path: ${{github.workspace}}/build/Release + path: ${{github.workspace}}/build/Release/bin - name: Upload Release uses: marvinpinto/action-automatic-releases@v1.2.1