FIx documentation main page after changing case on README.md #41
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: 'NetWiz CI' | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
simulate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: ghdl/setup-ghdl-ci@nightly | |
with: | |
backend: llvm | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: sim | |
working-directory: ./script | |
run: bash ghdl_run_all.sh | |
document: | |
needs: simulate | |
runs-on: ubuntu-latest | |
steps: | |
- uses: DenverCoder1/doxygen-github-pages-action@v1.3.0 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
config_file: Doxyfile | |
folder: html/html | |
target_folder: docs |