From 281edd8b24f855c93614911a9c162e19121f284e Mon Sep 17 00:00:00 2001 From: Martin Gerhardy Date: Thu, 14 May 2020 23:23:19 +0200 Subject: [PATCH] GITHUB: updated workflow to upload artifacts --- .github/workflows/main.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3c2bba614..c3920d116 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -56,9 +56,21 @@ jobs: cd build cmake .. -DRCON=OFF cmake --build . + cmake --install . --component voxedit --prefix voxedit + cmake --install . --component mapview --prefix mapview ctest -V -C Debug -R tests-animation ctest -V -C Debug -R tests-computeshadertool ctest -V -C Debug -R tests-math ctest -V -C Debug -R tests-util ctest -V -C Debug -R tests-stock ctest -V -C Debug -R tests-shadertool + - name: Upload the voxedit artifacts + uses: actions/upload-artifact@v2 + with: + name: voxedit + path: build/voxedit + - name: Upload the mapview artifacts + uses: actions/upload-artifact@v2 + with: + name: mapview + path: build/mapview