We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e74bec1 + 64f17e9 commit 010feebCopy full SHA for 010feeb
.travis.yml
@@ -14,4 +14,19 @@ script:
14
- npm run build:docs
15
- npm run test
16
17
+jobs:
18
+ include:
19
+ - # require the branch name to be master (note for PRs this is the base branch name)
20
+ if: branch = master
21
+ stage: release
22
+ node_js: lts/*
23
+ # Advanced: optionally overwrite your default `script` step to skip the tests
24
+ # script: skip
25
+ deploy:
26
+ provider: script
27
+ skip_cleanup: true
28
+ script:
29
+ - npx semantic-release
30
+ - curl -X POST --data-urlencode "payload={ \"text\" : \"A new version of `react-lite-ui` was published to NPM :tada:\" }" $RELEASE_NOTIF_URL
31
+
32
after_success: npm run coverage
0 commit comments