From 24a951d502ee291b91b433c08ce557827cd41fcf Mon Sep 17 00:00:00 2001 From: Ferdinand Schober Date: Thu, 16 Feb 2023 11:17:45 +0100 Subject: [PATCH] updload build artifacts --- .github/workflows/rust.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 2b803ef..3164a45 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -24,6 +24,11 @@ jobs: run: cargo build --verbose - name: Run tests run: cargo test --verbose + - name: Upload build artifact + uses: actions/upload-artifact@v3 + with: + name: lan-mouse + path: target/debug/lan-mouse build-windows: @@ -35,3 +40,8 @@ jobs: run: cargo build --verbose - name: Run tests run: cargo test --verbose + - name: Upload build artifact + uses: actions/upload-artifact@v3 + with: + name: lan-mouse-windows + path: target/debug/lan-mouse.exe