From ae40e4c066f7ece2bdf9418b9334950fab987484 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sat, 22 Mar 2025 19:29:29 -0400 Subject: [PATCH] Upload artifacts from CI --- .github/workflows/main.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ff6740a..af79e1e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -31,8 +31,21 @@ jobs: target/ key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} - name: Build - run: cargo build --verbose --no-default-features + run: cargo build --release --verbose --no-default-features - name: Run clippy run: cargo clippy --no-default-features - name: Run tests run: cargo test --verbose --no-default-features + - name: Archive artifacts + uses: actions/upload-artifact@v4 + with: + name: ${{ runner.os }}-package + path: | + target/release/kawari-admin* + target/release/kawari-frontier* + target/release/kawari-lobby* + target/release/kawari-login* + target/release/kawari-patch* + target/release/kawari-web* + !target/release/*.d + if-no-files-found: error