Skip to content

Refactor get_cartography return values and add to_folium_map func… #387

Refactor get_cartography return values and add to_folium_map func…

Refactor get_cartography return values and add to_folium_map func… #387

Workflow file for this run

name: "CD: GitHub Pages"
on:
push:
branches: [ "main" ]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
- 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
with:
enable-latex: true
- name: Set up git
run: |
git config --global user.name "${GITHUB_ACTOR}"
git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- name: Commit and Push
run: |
git add ./docs -f
git commit -m "Auto-deploy documentation"
git push --force