From 0d7e1f6f42b078dbb8c6224e406631224dd0534a Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Tue, 3 Sep 2019 16:39:47 +0400 Subject: Added Travis file Signed-off-by: Valentin Popov --- .travis.yml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..38ed314 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,37 @@ +language: node_js + +os: + - linux + +dist: + - bionic + +services: + - docker + +notifications: + email: + - 'info@valentineus.link' + +before_deploy: + - git stash --all + - yarn install + - yarn run build + - npm pack + +deploy: + - provider: npm + skip_cleanup: true + email: 'info@valentineus.link' + api_key: $NPM_PROJECT_TOKEN + on: + tags: true + + - provider: releases + skip_cleanup: true + file_glob: true + file: 'electron-hot-reload-*.tgz' + email: 'info@valentineus.link' + api_key: $GITHUB_PROJECT_TOKEN + on: + tags: true -- cgit v1.2.3