Skip to content

Commit

Permalink
build(ci): run pandoc by Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
mogeko committed Nov 16, 2024
1 parent f92ee82 commit 9ad50f0
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,11 @@ jobs:
id-token: write
steps:
- uses: actions/[email protected]
- run: sudo apt update && sudo apt -y install groff pandoc
- run: |
make -C ./vlmcsd-* pdfdocs htmldocs
pandoc -f markdown ./README.md > index.html
- run: sudo apt-get update && sudo apt-get -y install groff
- run: make -C ./vlmcsd-* pdfdocs htmldocs
- uses: docker://pandoc/core:3.5.0
with:
args: --from=markdown --output=index.html README.md
- run: |
install -d ./_site && install -t ./_site \
./vlmcsd-*/man/vlmcs*.{pdf,html} ./LICENSE ./index.html
Expand Down

0 comments on commit 9ad50f0

Please sign in to comment.