CI artifacts

This commit is contained in:
20PercentRendered
2022-04-30 23:15:14 +03:00
committed by GitHub
parent 7482706d81
commit 43aa215e74

View File

@@ -19,7 +19,6 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Init and update submodules
run: |
git submodule init
@@ -33,7 +32,14 @@ jobs:
- name: Build
# Build your program with the given configuration
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: linux-artifacts
path: |
${{github.workspace}}/build/lib
- name: Test
working-directory: ${{github.workspace}}/build
# Execute tests defined by the CMake configuration.