build: add arm64 support for Linux

This commit is contained in:
pan93412 2022-01-26 18:27:38 +08:00
parent 50171911f9
commit 6af6b86e87
No known key found for this signature in database
GPG Key ID: 42154B1B1CFE3377
2 changed files with 6 additions and 6 deletions

View File

@ -19,7 +19,7 @@ jobs:
- name: Check out Git repository
uses: actions/checkout@v2
with:
submodules: 'recursive'
submodules: "recursive"
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1

View File

@ -110,23 +110,23 @@ module.exports = {
target: [
{
target: 'AppImage',
arch: ['x64'],
arch: ['x64', 'arm64'],
},
{
target: 'tar.gz',
arch: ['x64'],
arch: ['x64', 'arm64'],
},
{
target: 'deb',
arch: ['x64', 'armv7l'],
arch: ['x64', 'armv7l', 'arm64'],
},
{
target: 'rpm',
arch: ['x64'],
arch: ['x64', 'arm64'],
},
{
target: 'snap',
arch: ['x64'],
arch: ['x64', 'arm64'],
},
{
target: 'pacman',