以下のyamlコードを使用して、doxygenでgthubアクションを作成しようとしています。
name: Doxygen Action
on: ["push"]
jobs:
build:
runs-on: "ubuntu-latest"
steps:
- name: "Doxygen Action"
uses: mattnotmitt/doxygen-action@v1.3.1
with:
doxyfile-path: ./Doxyfile
additional-packages: font-fira-code'
- name: Deploy
uses: peaceiris/actions-gh-pages@v3.7.3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
Doxyfile を作業ディレクトリに置いたのですが、見つかりません。--> ファイル ./Doxyfile が見つかりませんでした!
コードに何が欠けているのか疑問に思っています。
どうぞよろしくお願いいたします。