add vimdoc action
nessisary since README is in org
This commit is contained in:
parent
84ad5f6564
commit
ece3e3f540
1 changed files with 27 additions and 0 deletions
27
.github/workflows/panvimdoc.yml
vendored
Normal file
27
.github/workflows/panvimdoc.yml
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
name: panvimdoc
|
||||||
|
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
docs:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
name: pandoc to vimdoc
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: docker://pandoc/core
|
||||||
|
with:
|
||||||
|
args: "--output README.md README.org"
|
||||||
|
- name: panvimdoc
|
||||||
|
uses: kdheepak/panvimdoc@main
|
||||||
|
with:
|
||||||
|
vimdoc: orgmode-babel.nvim
|
||||||
|
# The following are all optional
|
||||||
|
pandoc: "README.md"
|
||||||
|
version: "NVIM v0.10.0"
|
||||||
|
toc: true
|
||||||
|
treesitter: true
|
||||||
|
- uses: stefanzweifel/git-auto-commit-action@v4
|
||||||
|
with:
|
||||||
|
commit_message: "Auto generate docs"
|
||||||
|
branch: ${{ github.head_ref }}
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue