diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 02fd4d72e..1f8a6639e 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -38,8 +38,16 @@ jobs: - name: Build working-directory: ${{github.workspace}}/build - shell: bash - - + shell: bash # Execute the build. You can specify a specific target with "--target " run: cmake --build . --config $BUILD_TYPE + + - name: Upload Build Artifacts + uses: actions/upload-artifact@v2 + with: + name: compressonatlrCLI_64_Windows_Master_Build + path: ${{github.workspace}}/build/bin/Release + + + +