Skip to content

Commit

Permalink
bugfix/workflow: upload binaries after building (#3)
Browse files Browse the repository at this point in the history
* Upload build artifacts

* Update binary path on Windows
  • Loading branch information
shg8 authored Feb 15, 2024
1 parent 8b0b7c4 commit e70b987
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,11 @@ jobs:
- name: Build
# Build your program with the given configuration. Note that --config is needed because the default Windows generator is a multi-config generator (Visual Studio generator).
run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }}

- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: vulkan_splatting-${{ matrix.os }}-${{ matrix.c_compiler }}-${{ matrix.build_type }}
path: |
${{ steps.strings.outputs.build-output-dir }}/vulkan_splatting
${{ steps.strings.outputs.build-output-dir }}/Release/vulkan_splatting.exe

0 comments on commit e70b987

Please sign in to comment.