From 868ea43142b724043e04e38b28d459a4c234bdb0 Mon Sep 17 00:00:00 2001 From: Tim Meredith Date: Mon, 21 Oct 2024 21:52:20 -0300 Subject: [PATCH] Make GHA do apt update before installing musl --- .github/workflows/actions.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/actions.yaml b/.github/workflows/actions.yaml index dfbbbc5..70df590 100644 --- a/.github/workflows/actions.yaml +++ b/.github/workflows/actions.yaml @@ -46,7 +46,9 @@ jobs: working-directory: ./wghub-ui run: npm run build - name: Set up musl - run: apt install musl-dev musl-tools + run: | + sudo apt update + sudo apt install musl-dev musl-tools - name: Build backend run: cargo build --release --target x86_64-unknown-linux-musl - name: Push to GitHub Packages