I want to expand the dist folder after success. But instead, he continues to deploy the entire repository.
What I want to achieve is the same effect:
npm publish dist
Here is the related part from my .travis.yml :
deploy: provider: npm email: sa.alemdar@hotmail.com api_key: secure: MyApiKey skip_cleanup: true file_glob: true file: "dist/**/*" on: tags: true repo: salemdar/angular2-cookie
source share