From 5210076ad937ae2a1c0ed0ba9d8358419a4ebd54 Mon Sep 17 00:00:00 2001 From: Luc Georges Date: Wed, 26 Jun 2024 12:53:33 +0200 Subject: [PATCH] fix(ci): install `x86_64-linux-gnu-g++` in musl build --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fea1e4b..0e0964e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -99,7 +99,7 @@ jobs: steps: - name: Install dependencies - run: apk add --no-cache git clang lld musl-dev nodejs npm openssl-dev pkgconfig g++ openssl-dev perl make linux-headers + run: apk add --no-cache git clang lld musl-dev nodejs npm openssl-dev pkgconfig g++ openssl-dev perl make linux-headers x86_64-linux-gnu-g++ - name: Checkout repository uses: actions/checkout@v4