diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml index 49f92c9..7088e43 100644 --- a/.github/workflows/release-build.yml +++ b/.github/workflows/release-build.yml @@ -10,12 +10,15 @@ env: CARGO_TERM_COLOR: always jobs: - static_binary: + # based off of https://github.com/houseabsolute/ubi/blob/master/.github/workflows/ci.yml + artifacts: strategy: matrix: platform: - target: x86_64-unknown-linux-musl bin: soldr + - target: x86_64-unknown-linux-gnu + bin: soldr name: MUSL binary runs-on: ubuntu-latest steps: @@ -26,6 +29,7 @@ jobs: - name: Build shell: bash run: | + ls -la cargo build --locked --release --target ${{ matrix.platform.target }} - name: Strip binary shell: bash