From 1a3c439b02dc1c11ed9cb242ff492350c295f5ab Mon Sep 17 00:00:00 2001 From: Telesphoreo Date: Sat, 14 May 2022 18:31:31 -0500 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index af7b691..0e4febe 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -35,3 +35,19 @@ jobs: with: name: IBConverter-macOS path: target/release/IBConverter + build_linux: + name: IBConverter Linux + runs-on: ubuntu-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-Linux + path: target/release/IBConverter