Skip to content

Made BurtSerial.send easier #38

Made BurtSerial.send easier

Made BurtSerial.send easier #38

Workflow file for this run

name: Document with Doxygen
# Documents the BURT_can library with Doxygen.
# Publishes the result to a separate branch, `documentation`, under
# `docs/`, which can be published through GitHub Pages.
on:
push:
branches: [ main ]
jobs:
documentation:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Remove previous docs
run: |
git config --local user.name "github-actions[bot]"
git branch --all
git switch --track origin/documentation
git merge origin/main
rm -rf docs
git stage docs
git commit -m "Removed documentation" -m "Will generate new docs"
- name: Run Doxygen
uses: mattnotmitt/[email protected]
- name: Commit and push files
run: |
git status
git stage --force .
git commit -a -m "Generated documentation"
git push