diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 5f35e7d..7e4ab4e 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -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 diff --git a/vue.config.js b/vue.config.js index 0251033..1c258ee 100644 --- a/vue.config.js +++ b/vue.config.js @@ -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',