From 7c32eae1831d882571d5e0201d88b139ef34e4b4 Mon Sep 17 00:00:00 2001 From: "Herman J. Radtke III" Date: Sat, 27 Jan 2024 08:20:17 -0500 Subject: [PATCH] try --- .github/workflows/ci.yml | 2 +- .github/workflows/release-build.yml | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3497a13..99b5923 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: toolchain: - stable steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-node@v3 - uses: extractions/setup-just@v1 - run: just install build-ui diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml index 7088e43..79beb6c 100644 --- a/.github/workflows/release-build.yml +++ b/.github/workflows/release-build.yml @@ -22,6 +22,10 @@ jobs: name: MUSL binary runs-on: ubuntu-latest steps: + - uses: actions/checkout@v4 + - name: Install musl-tools on Linux + run: sudo apt-get update --yes && sudo apt-get install --yes musl-tools + if: contains(matrix.platform.name, 'musl') - name: Install toolchain uses: dtolnay/rust-toolchain@stable with: @@ -29,7 +33,6 @@ jobs: - name: Build shell: bash run: | - ls -la cargo build --locked --release --target ${{ matrix.platform.target }} - name: Strip binary shell: bash