0

在此处输入图像描述

我正在尝试使用下面的 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 找不到!

我想知道我的代码中缺少什么。

非常感谢您的帮助

4

1 回答 1

0

如果没有 doxygen-action,运行 Doxygen 会更容易。我建议你试试这个:

  1. 安装 Doxygensudo apt-get install doxygen
  2. 生成 Doxy 文档doxygen Doxyfile

就是这样。或者简单地使用 Actions 步骤:

- name: "Doxygen"
  run: |
    sudo apt-get install -y doxygen
    doxygen Doxyfile
于 2021-07-19T10:22:56.150 回答