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 Dec 4, 2023
1 parent 4064a05 commit ac9c79f
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 @@ -62,3 +62,13 @@ jobs:

- name: Test
run: ctest --test-dir build --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 ac9c79f

Please sign in to comment.