From bc0da2ccafda39691df0beb4eef07fdf1d36ad5a Mon Sep 17 00:00:00 2001 From: hirosassa Date: Mon, 13 May 2024 06:38:17 +0900 Subject: [PATCH] fix release ci (#42) --- .github/workflows/release.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e42fe51..06abf98 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -21,6 +21,10 @@ jobs: target: x86_64-unknown-linux-musl artifact_name: ksnotify asset_name: ksnotify-x86_64-unknown-linux-musl + - os: ubuntu-latest + target: x86_64-pc-windows-gnu + artifact_name: bqvalid.exe + asset_name: ksnotify-x86_64-pc-windows-gnu.exe - os: macos-latest target: x86_64-apple-darwin artifact_name: ksnotify @@ -38,6 +42,7 @@ jobs: rustup toolchain install stable --profile minimal rustup default stable cargo install cross + rustup target add ${{ matrix.target }} - name: Cross build with all features run: cross build --release --target ${{ matrix.target }} --all-features --verbose