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.
1 parent f6f2636 commit f686754Copy full SHA for f686754
.travis.yml
@@ -5,11 +5,17 @@ cache:
5
notifications:
6
email: false
7
node_js:
8
- - '7'
9
-before_script:
10
- - npm prune
11
-after_success:
12
- - npm run semantic-release
13
-branches:
14
- except:
15
- - /^v\d+\.\d+\.\d+$/
+ - '8'
+
+jobs:
+ include:
+ # Define the release stage that runs semantic-release
+ - stage: release
+ node_js: lts/*
+ # Advanced: optionally overwrite your default `script` step to skip the tests
16
+ # script: skip
17
+ deploy:
18
+ provider: script
19
+ skip_cleanup: true
20
+ script:
21
+ - npx semantic-release
0 commit comments