Skip to content

Commit

Permalink
feat(workspace): rework deployment to be purely .travis.yml based
Browse files Browse the repository at this point in the history
  • Loading branch information
tomastrajan committed Jul 12, 2019
1 parent 7f72fbd commit 681e6df
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 52 deletions.
50 changes: 0 additions & 50 deletions .travis-deploy.sh

This file was deleted.

16 changes: 14 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,19 @@ install:
script:
# run build script specified in package.json
- npm run ci
# call script for deploying of produced artifacts
- bash ./.travis-deploy.sh
after_success:
- codecov
deploy:
- provider: npm
email: tomas.trajan@gmail.com
api_key: $NPM_TOKEN
on:
tags: true
- provider: pages
name: tomastrajan
email: tomas.trajan@gmail.com
local_dir: dist/elements-demo
skip_cleanup: true
github_token: $GH_TOKEN
on:
tags: true

0 comments on commit 681e6df

Please sign in to comment.