Skip to content

Commit e7dc23a

Browse files
committed
ci: Add changelog step to releases
1 parent ea97fe6 commit e7dc23a

File tree

5 files changed

+4880
-5
lines changed

5 files changed

+4880
-5
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,14 @@ jobs:
2222
- stage: Release + website update
2323
language: node_js
2424
node_js: lts/*
25-
install: true
25+
cache:
26+
yarn: true
2627
script: skip
2728
deploy:
2829
provider: script
2930
skip_cleanup: true
3031
script:
31-
- npx semantic-release
32+
- yarn semantic-release
3233
on:
3334
branch: master
3435
- # stage name not required, will continue to use `Release + website update`

CHANGELOG.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
**Please note 0.x releases are development releases and there will be breaking changes until we hit 1.0. For more information, see [semver](http://semver.org/#how-should-i-deal-with-revisions-in-the-0yz-initial-development-phase).**
2-
31
# 0.14.1 - 2019-03-03
42

53
- Fix: Date of birth parsing with new config

package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"name": "hackathon_manager",
33
"private": true,
4-
"dependencies": {}
4+
"dependencies": {},
5+
"devDependencies": {
6+
"@semantic-release/changelog": "^3.0.2",
7+
"@semantic-release/git": "^7.0.8",
8+
"semantic-release": "^15.13.12"
9+
}
510
}

release.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@ module.exports = {
9797
writerOpts,
9898
},
9999
],
100+
'@semantic-release/changelog',
101+
'@semantic-release/git',
100102
[
101103
'@semantic-release/github',
102104
{

0 commit comments

Comments
 (0)