如何在travis-ci阶段调试部署到GitHub Pages

时间:2018-12-22 16:45:20

标签: deployment travis-ci github-pages

我正在使用Travis-ci测试一个开源项目并将doxygen文档部署到GitHub Pages。我正在使用以下.travis.yml代码:

jobs:
 include:
   - stage: "Lib"
     name: "Testing + with examples"
     script:
        - source .travis/checking_test.sh
   - stage: "Documentation"
     name: "Building and deploying the documentation"
     script: 
       - source ../.travis/build_doc.sh
     deploy:
       provider: pages
       skip-cleanup: true
       github-token: $GITHUB_TOKEN
       keep-history: true
       repo: DGtal-team/dgtal.github.io
       target-branch: master

文档是由我的build_doc.sh脚本正确生成的,但是部署没有效果(甚至日志中没有错误消息)。 如何调试部署阶段?

0 个答案:

没有答案