Add name
attribute to Street class
#130
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: | |
branches: [ "main" ] | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
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 | |
- 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 | |
git commit -m "Auto-deploy documentation" | |
git push --force |