2019-08-24 16:20:19 +00:00
|
|
|
# == INSTRUCTIONS FOR SETTING UP TRAVIS (and GitHub Pages) ==
|
|
|
|
#
|
|
|
|
# 1. Find this repository in your Travis-CI dashboard.
|
|
|
|
# open settings and add an environment variable called
|
|
|
|
# GITHUB_ACCESS_TOKEN and set it to your personal access token.addons:
|
|
|
|
# See: https://help.github.com/en/articles/creating-a-personal-access-token-for-the-command-line
|
|
|
|
#
|
|
|
|
# **DO NOT TURN ON 'Display value in build log'!!!!**
|
|
|
|
#
|
|
|
|
# 2. Push the code to the repository.
|
|
|
|
# 3. Profit!
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-08-21 13:18:20 +00:00
|
|
|
language: node_js
|
|
|
|
node_js:
|
2019-08-24 16:20:19 +00:00
|
|
|
- "12"
|
|
|
|
|
|
|
|
env:
|
|
|
|
- DEPLOY_ENV=GH_PAGES
|
|
|
|
|
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- "node_modules"
|
|
|
|
|
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- "master"
|
|
|
|
|
|
|
|
install:
|
|
|
|
- "npm install"
|
|
|
|
- "npm run generate"
|
|
|
|
|
2019-08-21 13:18:20 +00:00
|
|
|
notifications:
|
|
|
|
webhooks: https://www.travisbuddy.com
|
2019-08-24 16:20:19 +00:00
|
|
|
|
|
|
|
deploy:
|
|
|
|
provider: pages
|
|
|
|
skip_cleanup: true
|
|
|
|
# Refer to: https://docs.travis-ci.com/user/deployment/pages/#Setting-the-GitHub-token
|
|
|
|
github_token: $GITHUB_ACCESS_TOKEN
|
|
|
|
target-branch: gh-pages
|
|
|
|
local_dir: dist
|
|
|
|
on:
|
|
|
|
branch: master
|