We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f93e35 commit 15f37deCopy full SHA for 15f37de
1 file changed
.github/workflows/build.yml
@@ -29,14 +29,16 @@ jobs:
29
run: |
30
mkdir build
31
cd build
32
- cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ..
+ cmake -G Ninja -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
33
cmake --build .
34
35
- name: Upload Artifacts
36
uses: actions/upload-artifact@v4
37
with:
38
name: example-plugin-windows
39
- path: ./build/*.dll
+ path: |
40
+ ./build/*.dll
41
+ ./build/*.pdb
42
43
build_linux:
44
name: Build on Ubuntu
@@ -66,7 +68,7 @@ jobs:
66
68
67
69
70
71
72
73
74
0 commit comments