From 660d7b1815afc7380d707faca33a7085c3c53b51 Mon Sep 17 00:00:00 2001
From: xeruf <27jf@pm.me>
Date: Sat, 7 Dec 2024 01:10:28 +0100
Subject: [PATCH] build(ci): only capture exe on windows for upload

---
 .github/workflows/ci.yml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 441caf2..500c6a6 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -25,7 +25,9 @@ jobs:
     - uses: actions/upload-artifact@v4
       with:
         name: mostr_${{ github.sha }}_${{ matrix.os }}
-        path: target/release/mostr*
+        path: |
+          target/release/mostr
+          target/release/mostr.exe
   #build-arm:
   #  runs-on: ${{ matrix.os }}
   #  if: startsWith(github.ref, 'refs/tags/')