From 90bf44283240a787ebabaa8454e9e7259ff8f276 Mon Sep 17 00:00:00 2001 From: Telesphoreo Date: Sat, 14 May 2022 18:14:54 -0500 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 642e9bf..af7b691 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,8 +3,8 @@ name: Build on: [ push ] jobs: - build_and_test: - name: IBConverter + build_windows: + name: IBConverter Windows runs-on: windows-latest steps: - uses: actions/checkout@v2 @@ -17,5 +17,21 @@ jobs: args: --release --all-features - uses: actions/upload-artifact@v3 with: - name: IBConverter-Linux - path: target/release/IBConverter* + name: IBConverter-Windows + path: target/release/IBConverter.exe + build_macos: + name: IBConverter Mac + runs-on: macos-latest + steps: + - uses: actions/checkout@v2 + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + - uses: actions-rs/cargo@v1 + with: + command: build + args: --release --all-features + - uses: actions/upload-artifact@v3 + with: + name: IBConverter-macOS + path: target/release/IBConverter