mirror of
https://github.com/Eugeny/tabby
synced 2024-12-14 15:22:40 +00:00
Merge pull request #6106 from Jai-JAP/master
This commit is contained in:
commit
61810da810
3 changed files with 3 additions and 3 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -241,7 +241,7 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
include:
|
||||
- arch: x86_64
|
||||
- arch: x64
|
||||
- arch: arm64
|
||||
|
||||
steps:
|
||||
|
|
|
@ -4,7 +4,7 @@ const vars = require('./vars')
|
|||
|
||||
const isTag = (process.env.GITHUB_REF || '').startsWith('refs/tags/')
|
||||
|
||||
process.env.ARCH = process.env.ARCH || process.arch === 'arm' ? 'armv7l' : process.arch
|
||||
process.env.ARCH = (process.env.ARCH || process.arch) === 'arm' ? 'armv7l' : process.arch
|
||||
|
||||
builder({
|
||||
dir: true,
|
||||
|
|
|
@ -3,7 +3,7 @@ const rebuild = require('electron-rebuild').default
|
|||
const path = require('path')
|
||||
const vars = require('./vars')
|
||||
|
||||
process.env.ARCH = process.env.ARCH ?? (process.arch === 'arm' ? 'armv7l' : process.arch)
|
||||
process.env.ARCH = (process.env.ARCH || process.arch) === 'arm' ? 'armv7l' : process.arch
|
||||
|
||||
let lifecycles = []
|
||||
for (let dir of ['app', 'tabby-core', 'tabby-local', 'tabby-ssh', 'tabby-terminal']) {
|
||||
|
|
Loading…
Reference in a new issue