vscodium/.travis.yml

30 lines
413 B
YAML
Raw Normal View History

2018-08-13 21:24:40 +03:00
matrix:
include:
- os: linux
sudo: required
- os: osx
2018-08-13 18:14:15 +03:00
2018-08-13 21:24:40 +03:00
language: node_js
node_js: "8"
2018-08-13 18:14:15 +03:00
before_install:
- ./install_deps.sh
2018-08-14 17:13:34 +03:00
- ./get_repo.sh
- ./check_tags.sh
2018-08-13 18:14:15 +03:00
script:
- ./build.sh
before_deploy:
- ./create_zip.sh
deploy:
provider: releases
skip_cleanup: true
2018-08-13 21:24:40 +03:00
api_key: $GITHUB_TOKEN
2018-08-13 18:14:15 +03:00
file_glob: true
file: ./*.zip
on:
2018-08-14 17:13:34 +03:00
all_branches: true
condition: $SHOULD_BUILD = yes