diff --git a/docs/Doxyfile b/Doxyfile similarity index 99% rename from docs/Doxyfile rename to Doxyfile index d288801..792c2a4 100644 --- a/docs/Doxyfile +++ b/Doxyfile @@ -140,7 +140,7 @@ IGNORE_PREFIX = # Configuration options related to the HTML output #--------------------------------------------------------------------------- GENERATE_HTML = YES -HTML_OUTPUT = docs +HTML_OUTPUT = . HTML_FILE_EXTENSION = .html HTML_HEADER = HTML_FOOTER = diff --git a/circle.yml b/circle.yml index b66d699..cb10d5e 100644 --- a/circle.yml +++ b/circle.yml @@ -22,7 +22,7 @@ jobs: - run: name: "Test documentation" command: | - doxygen docs/Doxyfile > doxygen.log 2> doxygen.warnings + doxygen Doxyfile > doxygen.log 2> doxygen.warnings if [ -s doxygen.warnings ]; then printf '\n\nDoxygen warnings:\n\n' cat doxygen.warnings @@ -37,13 +37,13 @@ jobs: - checkout - run: name: "Generate documentation" - command: doxygen docs/Doxyfile + command: doxygen Doxyfile - run: name: "Upload documentation" command: | git config user.email "docs-bot@ethereum.org" git config user.name "Documentation Bot" - git add docs + git add --all git commit -m "Update docs" git push -f "https://$GITHUB_TOKEN@github.com/ethereum/evmc.git" HEAD:gh-pages