mirror of
https://github.com/Eugeny/tabby
synced 2024-11-15 09:27:24 +00:00
Update linux.yml
This commit is contained in:
parent
27ff57e47e
commit
587f295c30
1 changed files with 13 additions and 3 deletions
16
.github/workflows/linux.yml
vendored
16
.github/workflows/linux.yml
vendored
|
@ -13,17 +13,27 @@ jobs:
|
|||
with:
|
||||
version: 10
|
||||
|
||||
- name: Build
|
||||
- name: Install deps
|
||||
run: |
|
||||
cd app
|
||||
yarn
|
||||
cd ..
|
||||
rm app/node_modules/.yarn-integrity
|
||||
yarn
|
||||
yarn run lint
|
||||
scripts/build-native.js
|
||||
|
||||
- name: Lint
|
||||
run: yarn run lint
|
||||
|
||||
- name: Build native deps
|
||||
run: scripts/build-native.js
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
yarn run build:typings
|
||||
yarn run build
|
||||
|
||||
- name: Build packages
|
||||
run: |
|
||||
scripts/prepackage-plugins.js
|
||||
DEBUG=electron-builder scripts/build-linux.js
|
||||
env:
|
||||
|
|
Loading…
Reference in a new issue