Skip to content

Merge pull request #235 from sbaldu/remove-unused-tiles-methods #82

Merge pull request #235 from sbaldu/remove-unused-tiles-methods

Merge pull request #235 from sbaldu/remove-unused-tiles-methods #82

Workflow file for this run

name: GitHub Pages
on:
push:
branches: [ "main" ]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
ref: main
- name: Switch to gh-pages branch and rebase
run: |
git fetch
git checkout gh-pages
git reset --hard main
- name: Doxygen Action
uses: mattnotmitt/doxygen-action@edge
- name: Set up git
run: |
git config --global user.name "${GITHUB_ACTOR}"
git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- name: Switch to gh-pages branch and rebase
run: |
git add ./docs --force
git commit -m "Auto-deploy documentation"
git push origin gh-pages --force