Skip to content

Commit

Permalink
make Package inside a folder...
Browse files Browse the repository at this point in the history
  • Loading branch information
pieplu committed Dec 12, 2018
1 parent 4c73dee commit c8dbbc4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ jobs:
- export TRAVIS_TAG=$(date +'%Y%m%d-%H%M%S')
- export FILENAME="react-jsonschema-form-${TRAVIS_TAG}.tar.gz"
- npm run dist
- tar -czvf $FILENAME dist lib package.json README.md
- mkdir package
- cp -r dist package/
- cp -r lib package/
- cp package.json package/
- cp README.md package/
- tar -czvf $FILENAME package
- echo "Deploy Github release"
deploy:
provider: releases
Expand Down

0 comments on commit c8dbbc4

Please sign in to comment.