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