fix HTML_COLORSTYLE_ values on Doxygen file #195
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Documentation | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository and submodules | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: create dirs | |
run: mkdir docout | |
- name: set repo url on corner | |
run: | | |
sed -i 's,https://github.com/jothepro/doxygen-awesome-css,https://github.com/kmilo17pet/QuarkTS,g' doc/stylesheet/doxygen-custom/header.html | |
sed -i 's,Doxygen Awesome,QuarkTS OS,g' doc/stylesheet/doxygen-custom/header.html | |
sed -i 's,https://jothepro.github.io/doxygen-awesome-css,https://kmilo17pet.github.io/QuarkTS,g' doc/stylesheet/doxygen-custom/header.html | |
sed -i 's,https://repository-images.githubusercontent.com/348492097/4f16df80-88fb-11eb-9d31-4015ff22c452,https://github.com/kmilo17pet/QuarkTS/raw/master/doc/quarktslogo.png,g' doc/stylesheet/doxygen-custom/header.html | |
sed -i 's,Custom CSS theme for doxygen html-documentation with lots of customization parameters,An open-source OS for small embedded applications,g' doc/stylesheet/doxygen-custom/header.html | |
- name: Doxygen Action | |
uses: mattnotmitt/doxygen-action@edge | |
with: | |
doxyfile-path: './doc/Doxygen' | |
- name: rm gitignore | |
run: rm .gitignore | |
- name: Deploy doc | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./doxyout/html |