From 3ebffa1e29e6afedc832663d842cfc35b9ec8600 Mon Sep 17 00:00:00 2001 From: Daniel Schaefer Date: Mon, 4 Aug 2025 22:17:02 +0800 Subject: [PATCH] gh-actions: Also upload linux release build Signed-off-by: Daniel Schaefer --- .github/workflows/ci.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0f5604d1..c22589df 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,9 +62,18 @@ jobs: - name: Upload Linux App uses: actions/upload-artifact@v4 with: - name: framework_tool + name: framework_tool_debug path: target/debug/framework_tool + - name: Build Linux tool (Release) + run: cargo build -p framework_tool --release + + - name: Upload Linux App + uses: actions/upload-artifact@v4 + with: + name: framework_tool + path: target/release/framework_tool + build-uefi: name: Build UEFI runs-on: ubuntu-24.04