mirror of https://github.com/Eugeny/tabby.git
21 lines
321 B
YAML
21 lines
321 B
YAML
|
|
version: 2
|
||
|
|
jobs:
|
||
|
|
build:
|
||
|
|
macos:
|
||
|
|
xcode: "11.0.0"
|
||
|
|
|
||
|
|
steps:
|
||
|
|
- checkout
|
||
|
|
|
||
|
|
- run:
|
||
|
|
name: Build
|
||
|
|
command: ./build/travis.sh
|
||
|
|
|
||
|
|
- store_artifacts:
|
||
|
|
path: dist/*.dmg
|
||
|
|
destination: DMG
|
||
|
|
|
||
|
|
- store_artifacts:
|
||
|
|
path: dist/*.pkg
|
||
|
|
destination: PKG
|