From 477f019b49eaa722b29cd3d74c89fd4f183bfef9 Mon Sep 17 00:00:00 2001 From: acidicoala <67734819+acidicoala@users.noreply.github.com> Date: Sun, 5 Oct 2025 22:53:04 +0500 Subject: [PATCH] Updated CI --- .github/workflows/kb-build.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/kb-build.yml b/.github/workflows/kb-build.yml index 77a3977..67c2a86 100644 --- a/.github/workflows/kb-build.yml +++ b/.github/workflows/kb-build.yml @@ -65,15 +65,15 @@ jobs: ${{ env.LINUX_FLAGS }} --debug-output -# - name: Build the project -# run: > -# cmake -# --build ${{ env.BUILD_DIR }} -# --config Release -# --target ${{ github.event.input.module }} + - name: '🏗️ Build ${{ inputs.module }}' + run: > + cmake + --build ${{ env.BUILD_DIR }} + --config Release + --target ${{ inputs.module }} -# - name: Upload binaries -# uses: actions/upload-artifact@v4 -# with: -# name: ${{ inputs.module }}-${{ inputs.os }}-${{ inputs.bitness }} -# path: ${{ env.BUILD_DIR }}/${{ env.OUTPUT_PATH }} + - name: '📤 Upload binaries' + uses: actions/upload-artifact@v4 + with: + name: ${{ inputs.module }}-${{ inputs.os }}-${{ inputs.bitness }} + path: ${{ env.BUILD_DIR }}/${{ env.OUTPUT_PATH }}