From a9f6c20113e18a7a7ed31e9efebf75fa95f4611d Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Wed, 22 Jan 2020 09:55:21 -0800 Subject: [PATCH] Support Linux release binaries --- .github/workflows/release.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5d42f5cf..b5cfeebd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,4 +38,21 @@ jobs: uses: actions/upload-artifact@v1 with: name: rojo-macos + path: target/release/rojo + + linux: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + + - name: Build + run: cargo build --locked --verbose --release + env: + OPENSSL_STATIC: 1 + + - name: Upload artifacts + uses: actions/upload-artifact@v1 + with: + name: rojo-linux path: target/release/rojo \ No newline at end of file