feat: generate screen from mastercopy (#38) #54
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 Doxygen Files and Publish Pages | |
on: | |
push: | |
branches: | |
- main | |
- CI/CD | |
- development | |
jobs: | |
documentation: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install Doxygen | |
run: choco install doxygen.portable -y | |
- name: Generate Doxygen documentation | |
run: doxygen Doxyfile | |
- name: Upload Doxygen artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Doxygen Documentation | |
path: ./html | |
- name: Commit and push changes | |
run: | | |
git config --global user.name "GitHub Actions" | |
git config --global user.email "[email protected]" | |
git add . | |
git commit -m "docs: Update Doxygen documentation" | |
git push | |