sphinx-action icon indicating copy to clipboard operation
sphinx-action copied to clipboard

Need explanation

Open kridsadakorn opened this issue 3 years ago • 0 comments

Dear Authors,

I am quite naive about Github Action. What I want to do is to create the HTML documents from a public repository. Let say, I want to create the HTML documents from NumPy. How could I do that? Here is my naive script, it doesn't work. It would be great if you help me to point it out.

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@master
      with:
        repository: numpy/numpy
        path: .
    - uses: ammaraskar/sphinx-action@master
      with:
        build-command: "sphinx-build -b html . _build"
        docs-folder: "doc/"

Thank you.

kridsadakorn avatar Jun 22 '21 12:06 kridsadakorn