Skip to content

Commit 4fe8462

Browse files
committed
update pipeline
1 parent a3d64d9 commit 4fe8462

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.github/workflows/cmake.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)