Skip to content

Commit

Permalink
fix(release): try to get the changelog pushed in travis ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Deavon M. McCaffery committed Aug 19, 2016
1 parent e49e84d commit beca0a6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ before_script:
- git config --global user.email '[email protected]'
after_success:
- npm run release
- tar -cvzf uber.tar.gz install.sh src/*
- eval "$(ssh-agent -s)"
- chmod 600 .travis/deploy_key.pem
- ssh-add .travis/deploy_key.pem
- git remote -v
- git remote add deploy https://github.com/pulsebridge/uber.git
- git push --follow-tags deploy
deploy:
provider: releases
skip_cleanup: true
Expand Down
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "uber",
"version": "1.0.0",
"version": "1.0.1",
"description": "An amazing bash prompt for macOS and *nix",
"main": "install.sh",
"repository": {
Expand All @@ -9,9 +9,7 @@
},
"scripts": {
"test": ". ./install.sh",
"prerelease": "standard-version",
"release": "tar -cvzf uber.tar.gz install.sh src/*",
"postrelease": "git push --follow-tags origin master"
"release": "standard-version"
},
"keywords": [
"bash",
Expand Down

0 comments on commit beca0a6

Please sign in to comment.