Skip to content

Commit

Permalink
fix(ci): remove deploy-demo stage
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinchappell committed Mar 22, 2019
1 parent fcdf133 commit 1d7e273
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ stages:
- lint
- test
- release
- deploy-demo
language: node_js
node_js: '10'
cache:
Expand All @@ -20,17 +19,6 @@ jobs:
- stage: lint
script: yarn lint
skip_cleanup: true
- stage: deploy-demo
if: branch = master
before_deploy:
- yarn build
deploy:
provider: pages
skip-cleanup: true
local-dir: demo
github-token: $GH_TOKEN
on:
branch: master
- stage: release
if: branch = master
before_deploy:
Expand All @@ -40,3 +28,5 @@ jobs:
script:
- yarn travis-deploy-once "yarn semantic-release"
skip_cleanup: true
after_deploy:
- git push --force --quiet "https://${GH_TOKEN}@${GH_REPO}" $(git subtree split --prefix demo master):gh-pages > /dev/null 2>&1

0 comments on commit 1d7e273

Please sign in to comment.