mirror of https://github.com/status-im/evmc.git
Move generated docs to root dir
This commit is contained in:
parent
36830eb700
commit
20fd4ebeb4
|
@ -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 =
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue