mirror of
https://github.com/nqrduck/LimeDriver.git
synced 2024-11-22 01:52:24 +00:00
Enhance CI with build artifact upload
Added a step to the continuous integration workflow to upload compiled build artifacts. This permits easier access to builds for further testing and validation post-CI process.
This commit is contained in:
parent
b00b2f08e3
commit
40245eabe9
1 changed files with 6 additions and 1 deletions
7
.github/workflows/c-cpp.yml
vendored
7
.github/workflows/c-cpp.yml
vendored
|
@ -26,4 +26,9 @@ jobs:
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cmake -S . -B build && cmake --build build
|
run: cmake -S . -B build && cmake --build build
|
||||||
|
|
||||||
|
- name: Upload build artifacts
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: build
|
||||||
|
path: build
|
Loading…
Reference in a new issue