1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-11 13:13:59 +03:00
This commit is contained in:
Eugene Pankov 2019-08-26 22:14:10 +02:00
parent 2a1501c91e
commit e0f05654f7
2 changed files with 11 additions and 13 deletions

View File

@ -14,7 +14,17 @@ jobs:
version: 10
- name: Build
run: build/travis.sh
run: |
cd app
yarn
cd ..
rm app/node_modules/.yarn-integrity
yarn
scripts/build-native.js
yarn run build:typings
yarn run build
scripts/prepackage-plugins.js
scripts/build-macos.js
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
BT_TOKEN: ${{ secrets.BT_TOKEN }}

View File

@ -1,12 +0,0 @@
#!/bin/bash
set -e
cd app
yarn
cd ..
rm app/node_modules/.yarn-integrity
yarn
scripts/build-native.js
yarn run build:typings
yarn run build
scripts/prepackage-plugins.js
scripts/build-macos.js