Skip to content

[ci] update libremidi #654

[ci] update libremidi

[ci] update libremidi #654

Workflow file for this run

name: Documentation
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: |
sudo apt-get update -yqq
sudo apt-get install -yqq doxygen doxygen-doc doxygen-gui graphviz
- name: Build Documentation
run: |
cd docs/Doxygen
doxygen > doxygen.log
mkdir -p publish
mv html publish
- name: Deploy Documentation
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/Doxygen/publish
commit_message: 'Deploy code docs to GitHub Pages, Github Action id: $GITHUB_ACTION \nCommit: $GITHUB_SHA'
force_orphan: true