ci(doc): fix panvimdoc inputs #29
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Docs | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| doc: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install Neovim | |
| uses: rhysd/action-setup-vim@v1 | |
| with: | |
| neovim: true | |
| - name: panvimdoc | |
| uses: kdheepak/panvimdoc@v4.0.1 | |
| with: | |
| vimdoc: git-dev | |
| pandoc: README.md | |
| toc: true | |
| version: "NVIM v0.9" | |
| description: "" | |
| demojify: true | |
| treesitter: true | |
| shiftheadinglevelby: -1 | |
| docmapping: true | |
| - name: Generate help tags | |
| run: nvim --headless --clean -c "helptags doc/" -c qa | |
| - uses: stefanzweifel/git-auto-commit-action@v5 | |
| with: | |
| commit_message: "docs: auto generate" | |
| branch: ${{ github.head_ref }} | |
| file_pattern: doc |