blob: 38ed314397bdca2aac2654d872b5105e464d5af7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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
|