mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 13:17:46 +00:00
build: add arm64 support for Linux
This commit is contained in:
parent
50171911f9
commit
6af6b86e87
2 changed files with 6 additions and 6 deletions
2
.github/workflows/build.yaml
vendored
2
.github/workflows/build.yaml
vendored
|
|
@ -19,7 +19,7 @@ jobs:
|
||||||
- name: Check out Git repository
|
- name: Check out Git repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
submodules: 'recursive'
|
submodules: "recursive"
|
||||||
|
|
||||||
- name: Install Node.js, NPM and Yarn
|
- name: Install Node.js, NPM and Yarn
|
||||||
uses: actions/setup-node@v1
|
uses: actions/setup-node@v1
|
||||||
|
|
|
||||||
|
|
@ -110,23 +110,23 @@ module.exports = {
|
||||||
target: [
|
target: [
|
||||||
{
|
{
|
||||||
target: 'AppImage',
|
target: 'AppImage',
|
||||||
arch: ['x64'],
|
arch: ['x64', 'arm64'],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
target: 'tar.gz',
|
target: 'tar.gz',
|
||||||
arch: ['x64'],
|
arch: ['x64', 'arm64'],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
target: 'deb',
|
target: 'deb',
|
||||||
arch: ['x64', 'armv7l'],
|
arch: ['x64', 'armv7l', 'arm64'],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
target: 'rpm',
|
target: 'rpm',
|
||||||
arch: ['x64'],
|
arch: ['x64', 'arm64'],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
target: 'snap',
|
target: 'snap',
|
||||||
arch: ['x64'],
|
arch: ['x64', 'arm64'],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
target: 'pacman',
|
target: 'pacman',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue