forked from brakacai/discord-ghost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
68 lines (67 loc) · 1.92 KB
/
.travis.yml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
language: node_js
node_js:
- "lts/*"
jobs:
include:
- stage: Test
script:
- npm test
- npm run coverage
- npm run build
# Define the release stage that runs semantic-release
- stage: Create Release
if: branch = master
script: skip
deploy:
provider: script
skip_cleanup: true
script: npx semantic-release
- stage: Build and Deploy
if: (tag IS blank) AND (branch = master)
os: linux
before_script:
- npm install -g pkg
script:
- npm run build
before_deploy:
- pkg -o "start" --targets node10-linux-x64 "./dist/index.js"
- node tools/generateReleaseHierarchy.js
- zip -r "$TRAVIS_OS_NAME.zip" ./discord-ghost/*
deploy:
provider: releases
api_key: "$GH_TOKEN"
skip_cleanup: true
file: "$TRAVIS_OS_NAME.zip"
- stage: Build and Deploy
if: (tag IS blank) AND (branch = master)
os: osx
before_script:
- npm install -g pkg
script:
- npm run build
before_deploy:
- npm run build
- pkg -o "start" --targets node10-macos-x64 "./dist/index.js"
- node tools/generateReleaseHierarchy.js
- zip -r "$TRAVIS_OS_NAME.zip" ./discord-ghost/*
deploy:
provider: releases
api_key: "$GH_TOKEN"
skip_cleanup: true
file: "$TRAVIS_OS_NAME.zip"
- stage: Build and Deploy
if: (tag IS blank) AND (branch = master)
os: windows
before_script:
- npm install -g pkg
script:
- npm run build
before_deploy:
- choco install zip
- pkg -o "start" --targets node10-win-x64 "./dist/index.js"
- node tools/generateReleaseHierarchy.js
- zip -r "$TRAVIS_OS_NAME.zip" ./discord-ghost/*
deploy:
provider: script
skip_cleanup: true
script: node tools/releaseWindows.js "$GH_TOKEN"