doc: Add transparent white circle to logo so that it looks better wit… #728
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: GitHub Pages | |
on: | |
push: | |
jobs: | |
doxygen: | |
runs-on: ubuntu-latest | |
container: | |
image: registry.fedoraproject.org/fedora-minimal:37 | |
steps: | |
- name: Install dependencies | |
run: microdnf install -y git graphviz doxygen cmake make tar xz rsync | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Build | |
run: | | |
cmake . | |
make | |
doxygen | |
working-directory: doc | |
- name: Deploy 🚀 | |
uses: JamesIves/github-pages-deploy-action@releases/v4 | |
if: github.ref == 'refs/heads/master' | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BRANCH: gh-pages | |
FOLDER: doc/html |