From e35baeb8d0e8e3c1a67fdf862b4c66f8715a8535 Mon Sep 17 00:00:00 2001 From: "Justin W. Flory" <4721034+jwflory@users.noreply.github.com> Date: Wed, 27 Nov 2019 21:20:12 -0500 Subject: [PATCH] docs: update sample travis-ci config (#2012) This commit updates the sample Travis CI config used in the docs to deploy VuePress. Travis CI includes a config linter online and I made these changes from the feedback from the Travis CI config linter. These changes work cleanly with the latest API version of Travis CI at time of commit. Signed-off-by: Justin W. Flory --- packages/docs/docs/guide/deploy.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/docs/docs/guide/deploy.md b/packages/docs/docs/guide/deploy.md index 24d20df5..d6775b14 100644 --- a/packages/docs/docs/guide/deploy.md +++ b/packages/docs/docs/guide/deploy.md @@ -80,10 +80,10 @@ script: - npm run docs:build deploy: provider: pages - skip-cleanup: true + skip_cleanup: true local_dir: docs/.vuepress/dist - github-token: $GITHUB_TOKEN # a token generated on github allowing travis to push code on you repository - keep-history: true + github_token: $GITHUB_TOKEN # a token generated on github allowing travis to push code on you repository + keep_history: true on: branch: master ```