fix: Remove 32 bit linux build

This commit is contained in:
Ivan
2022-09-06 21:54:46 +03:00
parent 8858d94680
commit c204c6f8f8

View File

@@ -57,7 +57,7 @@ jobs:
# If the commit is tagged with a version (e.g. "v1.0.0"), # If the commit is tagged with a version (e.g. "v1.0.0"),
# release the app after building # release the app after building
release: ${{ startsWith(github.ref, 'refs/tags/v') }} release: ${{ startsWith(github.ref, 'refs/tags/v') }}
- name: Build/release Linux Electron app - name: Build/release Linux Electron app
uses: samuelmeuli/action-electron-builder@v1 uses: samuelmeuli/action-electron-builder@v1
if: runner.os == 'Linux' if: runner.os == 'Linux'
@@ -67,7 +67,7 @@ jobs:
# (No need to define this secret in the repo settings) # (No need to define this secret in the repo settings)
github_token: ${{ secrets.github_token }} 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"), # If the commit is tagged with a version (e.g. "v1.0.0"),
# release the app after building # release the app after building