From 40245eabe92c7c6ca1aa72dfad6c42ef44b9c85c Mon Sep 17 00:00:00 2001 From: Kumi Date: Fri, 9 Feb 2024 12:49:25 +0100 Subject: [PATCH] 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. --- .github/workflows/c-cpp.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 6da4869..a1abbf8 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -26,4 +26,9 @@ jobs: - name: Build run: cmake -S . -B build && cmake --build build - \ No newline at end of file + + - name: Upload build artifacts + uses: actions/upload-artifact@v2 + with: + name: build + path: build \ No newline at end of file