From 59d9cb53b683974cf467aea19788ddd1f28160b6 Mon Sep 17 00:00:00 2001 From: Aram Drevekenin Date: Tue, 25 Oct 2022 09:56:21 +0200 Subject: [PATCH] chore(ci): fix binaryen install for ubuntu (I hope) --- .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 cdc8bf98..9c453ee4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -72,7 +72,7 @@ jobs: - name: Install wasm-opt (ubuntu) if: matrix.os == 'ubuntu-latest' - run: eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)" && brew install binaryen + run: sudo apt-get install -y --no-install-recommends binaryen # Workaround for - name: Switch Xcode SDK