-
Notifications
You must be signed in to change notification settings - Fork 90
/
.travis.yml
42 lines (34 loc) · 1.1 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
language: node_js
node_js:
- '8'
cache:
directories:
- node_modules
notifications:
email: false
env:
global:
- ENCRYPTION_LABEL: "aa286ccd339e"
- COMMIT_AUTHOR_EMAIL: "[email protected]"
- TRIGGER_REPO_SLUG: "patternfly/angular-patternfly"
- TRIGGER_REPO_BRANCH: "master"
before_install:
- npm install -g [email protected]
- npm install -g bower grunt-cli
- npm install patternfly-eng-release
install: true
script:
- sh -x ./node_modules/patternfly-eng-release/scripts/_build.sh -a
after_success:
- 'if [[ "$TRAVIS_SECURE_ENV_VARS" = "true" && "$TRAVIS_BRANCH" = "master-dist" ]]; then
npm prune;
npm run semantic-release-pre;
sh -x ./node_modules/patternfly-eng-release/scripts/semantic-release/_bump.sh -a;
sh -x ./node_modules/patternfly-eng-release/scripts/semantic-release/_publish-npm.sh || travis_terminate 0;
npm run semantic-release-post;
- sh -x ./node_modules/patternfly-eng-release/scripts/semantic-release/_publish-webjar.sh -a;
fi'
- ./scripts/publish-ghpages.sh -t docs
branches:
except:
- /^v\d+\.\d+\.\d+$/