From 96cb5c214da0bc3be1b69011acfb07c4bc1f69f4 Mon Sep 17 00:00:00 2001 From: "Herman J. Radtke III" Date: Sat, 27 Jan 2024 08:16:49 -0500 Subject: [PATCH] try --- .github/workflows/release-build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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