Skip to content
This repository has been archived by the owner on Jun 22, 2021. It is now read-only.

Commit

Permalink
add Semantic-release
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronkjones committed Nov 28, 2018
1 parent febb28b commit abc8e8d
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 6 deletions.
15 changes: 15 additions & 0 deletions .releaserc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
branch: master
plugins:
- "@semantic-release/commit-analyzer"
- "@semantic-release/release-notes-generator"
- - "@semantic-release/changelog"
- changelogFile: CHANGELOG.md
changelogTitle: "# Semantic Versioning Changelog"
- - "@semantic-release/exec"
- prepareCmd: "./prepare-release.sh ${nextRelease.version}"
- - "@semantic-release/git"
- assets:
- CHANGELOG.md
- - "@semantic-release/github"
- assets:
- path: dist/**
18 changes: 12 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
language: bash

script:
- git clone https://github.com/aaronkjones/noobs-term.git
- cd noobs-term
- chmod +x noobs-term.sh
- sh noobs-term.sh
jobs:
include:
- stage: setup
script:
- npm install @semantic-release/changelog @semantic-release/git @semantic-release/changelog @semantic-release/commit-analyzer @semantic-release/exec @semantic-release/git semantic-release/release-notes-generator
- npx semantic-release
- stage: test
script:
- git clone https://github.com/aaronkjones/noobs-term.git
- cd noobs-term
- chmod +x noobs-term.sh
- sh noobs-term.sh

0 comments on commit abc8e8d

Please sign in to comment.