Skip to content

Add path suffixes in file path inside to_csv if absent (#271) #120

Add path suffixes in file path inside to_csv if absent (#271)

Add path suffixes in file path inside to_csv if absent (#271) #120

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