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:
Kumi 2024-02-09 12:49:25 +01:00
parent b00b2f08e3
commit 40245eabe9
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -26,4 +26,9 @@ jobs:
- name: Build
run: cmake -S . -B build && cmake --build build
- name: Upload build artifacts
uses: actions/upload-artifact@v2
with:
name: build
path: build