From df77577274f94c7b254497acdac4a8af701767ac Mon Sep 17 00:00:00 2001 From: Aram Drevekenin Date: Tue, 25 Oct 2022 09:28:49 +0200 Subject: [PATCH] chore(ci): install brew in ubuntu --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 69dd3a75..9ad49e0b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -65,6 +65,10 @@ jobs: - name: Install musl-tools if: matrix.os == 'ubuntu-latest' run: sudo apt-get install -y --no-install-recommends musl-tools + + - name: Enable brew in ubuntu + if: matrix.os == 'ubuntu-latest' + run: eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)" - name: Install wasm-opt run: brew install binaryen