From c204c6f8f884257f3597279c522372e73f77c33f Mon Sep 17 00:00:00 2001 From: Ivan Date: Tue, 6 Sep 2022 21:54:46 +0300 Subject: [PATCH] fix: Remove 32 bit linux build --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3b6af61..07b65f6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -57,7 +57,7 @@ jobs: # If the commit is tagged with a version (e.g. "v1.0.0"), # release the app after building release: ${{ startsWith(github.ref, 'refs/tags/v') }} - + - name: Build/release Linux Electron app uses: samuelmeuli/action-electron-builder@v1 if: runner.os == 'Linux' @@ -67,7 +67,7 @@ jobs: # (No need to define this secret in the repo settings) github_token: ${{ secrets.github_token }} - args: "--linux appimage --ia32 --x64 --arm64" + args: "--linux appimage --x64 --arm64" # If the commit is tagged with a version (e.g. "v1.0.0"), # release the app after building