Skip to content

Remove duplicate extension (#15) #42

Remove duplicate extension (#15)

Remove duplicate extension (#15) #42

Workflow file for this run

name: release
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
jobs:
build:
name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
config:
- {
name: "Ubuntu 22.04",
os: ubuntu-22.04,
}
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt update
sudo apt install -y doxygen graphviz
- name: Generate documentation
run: |
doxygen
- name: Deploy documentation
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs
if: github.ref == 'refs/heads/master'