Skip to content

Commit

Permalink
ci: Add install and upload steps
Browse files Browse the repository at this point in the history
  • Loading branch information
bwrsandman committed Nov 28, 2023
1 parent a7c5ab5 commit a4c878c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,13 @@ jobs:
- name: Test
working-directory: build
run: ctest --output-on-failure

- name: Install
run: cmake --install ${{github.workspace}}/build --strip --prefix ${{github.workspace}}/install

- name: Upload
uses: actions/upload-artifact@v3
with:
name: unshield-${{matrix.os}}-${{github.sha}}
path: ${{github.workspace}}/install
if-no-files-found: error

0 comments on commit a4c878c

Please sign in to comment.