From 77bc359d8a3db1ef4c2c25fa21b2c6d81742e0ca Mon Sep 17 00:00:00 2001 From: xeruf <27jf@pm.me> Date: Fri, 6 Dec 2024 22:30:13 +0100 Subject: [PATCH] build(ci): recognize windows exe --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 121ccbf..441caf2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,17 +15,17 @@ jobs: steps: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 - - run: cargo test --no-default-features - name: Install libdbus on Ubuntu if: matrix.os == 'ubuntu-latest' run: | sudo apt-get update sudo apt-get install -y libdbus-1-dev + - run: cargo test - run: cargo build --release - uses: actions/upload-artifact@v4 with: name: mostr_${{ github.sha }}_${{ matrix.os }} - path: target/release/mostr + path: target/release/mostr* #build-arm: # runs-on: ${{ matrix.os }} # if: startsWith(github.ref, 'refs/tags/')