use parallel builds in workflow to improve speed #151
Workflow file for this run
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: Update Documentation | |
on: | |
push: | |
tags: [ '*.*.*' ] | |
workflow_dispatch: | |
jobs: | |
update-documentation: | |
runs-on: ubuntu-latest | |
steps: | |
# Clone the repository | |
- name: Clone the Main Branch | |
uses: actions/checkout@v4 | |
with: | |
ref: main | |
- name: Clone the Documentation Branch | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
ref: gh-pages | |
path: gh-pages | |
- name: List Directory Structure | |
run: | | |
cd ${{github.workspace}} | |
ls -lAghR | |
- name: Install Doxygen & Graphviz | |
run: sudo apt-get update && sudo apt-get install -y doxygen graphviz global | |
# doxygen - For doxygen | |
# graphviz - For dot | |
# global - For htags | |
- name: Run Doxygen | |
run: | | |
cd "${{github.workspace}}/gh-pages" | |
doxygen ./Doxyfile | |
- name: Commit Changes | |
run: | | |
cd "${{github.workspace}}/gh-pages" | |
git config user.name github-actions | |
git config user.email [email protected] | |
git add -A && git commit -m "Generated Documentation" | |
git push |