From 685174e77b6fc37dbf33d6cc3f162a5831a6062d Mon Sep 17 00:00:00 2001 From: Marco Kirchner Date: Thu, 11 Jan 2024 22:50:09 +0100 Subject: [PATCH] only archive the binaries --- .github/workflows/rust-build-release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust-build-release.yml b/.github/workflows/rust-build-release.yml index 726714c..a8ce959 100644 --- a/.github/workflows/rust-build-release.yml +++ b/.github/workflows/rust-build-release.yml @@ -34,7 +34,11 @@ jobs: uses: actions/upload-artifact@v4 with: name: autokuma-${{ matrix.os }} - path: target/release/* + path: | + target/release/autokuma + target/release/autokuma.exe + target/release/kuma + target/release/kuma.exe release: needs: [build]