Skip to content
This repository was archived by the owner on Dec 8, 2025. It is now read-only.

Commit c7ebf7d

Browse files
committed
ci: disable linux arm64 separate build
1 parent a036061 commit c7ebf7d

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ jobs:
8080
- os: ubuntu-latest
8181
platform: linux
8282
arch: x64
83-
artifacts: "dist/electron/Packaged/*.+(deb|rpm|tar.gz),dist/electron/Packaged/latest-linux.yml"
84-
- os: ubuntu-24.04-arm
85-
platform: linux
86-
arch: arm64
87-
artifacts: "dist/electron/Packaged/*.+(deb|rpm|tar.gz),dist/electron/Packaged/latest-linux-arm64.yml"
83+
artifacts: "dist/electron/Packaged/*.+(deb|rpm|tar.gz),dist/electron/Packaged/latest-*.yml"
84+
# - os: ubuntu-24.04-arm
85+
# platform: linux
86+
# arch: arm64
87+
# artifacts: "dist/electron/Packaged/*.+(deb|rpm|tar.gz),dist/electron/Packaged/latest-linux-arm64.yml"
8888
- os: macos-latest
8989
platform: darwin
9090
arch: arm64

quasar.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -303,15 +303,15 @@ export default configure((/* ctx */) => {
303303
target: [
304304
{
305305
target: 'deb',
306-
arch: [arch]
306+
arch: ['x64', 'arm64']
307307
},
308308
{
309309
target: 'rpm',
310-
arch: [arch]
310+
arch: ['x64', 'arm64']
311311
},
312312
{
313313
target: 'tar.gz',
314-
arch: [arch]
314+
arch: ['x64', 'arm64']
315315
}
316316
],
317317
publish: [

0 commit comments

Comments
 (0)