Skip to content

Commit c9ad112

Browse files
authored
Upload Artifacts (#22)
1 parent feada49 commit c9ad112

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/build.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@ jobs:
2727
run: mkdir build && cd build && cmake -G 'Unix Makefiles' -DMSH3_TOOL=on ..
2828
- name: Build
2929
run: cd build && cmake --build .
30+
- name: Upload
31+
uses: actions/upload-artifact@82c141cc518b40d92cc801eee768e7aafc9c2fa2
32+
with:
33+
name: bin-linux
34+
path: |
35+
build/**/*.so
36+
build/**/msh3app
3037
- name: Install
3138
run: cd build && sudo cmake --install . --config Debug
3239
- name: Run
@@ -45,6 +52,13 @@ jobs:
4552
run: mkdir build && cd build && cmake -G 'Visual Studio 17 2022' -A x64 -DMSH3_TOOL=on ..
4653
- name: Build
4754
run: cd build && cmake --build .
55+
- name: Upload
56+
uses: actions/upload-artifact@82c141cc518b40d92cc801eee768e7aafc9c2fa2
57+
with:
58+
name: bin-windows
59+
path: |
60+
build/**/*.dll
61+
build/**/msh3app.exe
4862
- name: Install
4963
run: cd build && cmake --install . --config Debug
5064
- name: Run

0 commit comments

Comments
 (0)