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