From efc00e685a0737314b8d396647c6f8e708819d50 Mon Sep 17 00:00:00 2001 From: Chris Dock Date: Thu, 18 Nov 2021 09:18:28 -0500 Subject: [PATCH] GCC Multilib required to build better-sql3 Necessary until better-sql3 publishes prebuilt binaries for linux ia32 --- .github/workflows/main.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ee5974163c..51935ef5f5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -38,7 +38,10 @@ jobs: - name: Build Linux if: ${{ matrix.os == 'ubuntu-latest' }} - run: npm run build:linux -- --publish=onTagOrDraft + run: | + sudo apt-get update + sudo apt-get install gcc-multilib + npm run build:linux -- --publish=onTagOrDraft env: GH_TOKEN: ${{ secrets.DEPLOY_TOKEN }}