Skip to content

Commit

Permalink
feat: semantic-release
Browse files Browse the repository at this point in the history
  • Loading branch information
bencevans committed Feb 15, 2019
1 parent 5af4a4c commit d5a7860
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 4 deletions.
17 changes: 17 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
language: node_js

node_js:
- '10'

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
# script: skip
deploy:
provider: script
skip_cleanup: true
script:
- npx semantic-release
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tracksix",
"version": "0.0.0",
"version": "0.0.0-development",
"description": "Track your [⛵|🚂|🚙|🚜|🛵|🛷|🚶] with a Raspberry Pi and a GPS.",
"main": "index.js",
"dependencies": {
Expand All @@ -13,14 +13,16 @@
"tracksix": "./bin.js"
},
"devDependencies": {
"standard": "^12.0.1"
"standard": "^12.0.1",
"semantic-release": "^15.13.3"
},
"scripts": {
"test": "standard"
"test": "standard",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bencevans/tracksix.git"
"url": "https://github.com/bencevans/tracksix.git"
},
"keywords": [
"owntracks",
Expand Down

0 comments on commit d5a7860

Please sign in to comment.