File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -23,15 +23,13 @@ jobs:
2323 - name : Configure CMake
2424 # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
2525 # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
26- run : cmake -B ${{github.workspace}}\build\${{env.BUILD_TYPE}} -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
26+ run : cmake -B ${{github.workspace}}\build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
2727
2828 - name : Build
2929 # Build your program with the given configuration
30- run : cmake --build ${{github.workspace}}\build\${{env.BUILD_TYPE}} --config ${{env.BUILD_TYPE}}
30+ run : cmake --build ${{github.workspace}}\build --config ${{env.BUILD_TYPE}}
3131
32- - name : Package
33- working-directory : ${{github.workspace}}\tools\
34- # Execute tests defined by the CMake configuration.
35- # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
36- run : .\CreateReleaseFolder.bat
32+ - uses : actions/download-artifact@v3
33+ with :
34+ name : my-artifact
3735
You can’t perform that action at this time.
0 commit comments