我正在使用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
脚本正确生成的,但是部署没有效果(甚至日志中没有错误消息)。
如何调试部署阶段?