Skip to content

other(workflow): Sphinx Docs #37

other(workflow): Sphinx Docs

other(workflow): Sphinx Docs #37

Workflow file for this run

#name: convert
#
#on:
# push:
#
#jobs:
# converttopdf:
# name: Build PDF
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
#
# - name: Build book
# run: |-
# npm install -g md-to-pdf
# mkdir -p _output
# cd docs
# echo; echo "Input Folder Listing"
# ls
# echo; echo "Generating PDF"
# for f in *.md; do cat $f; echo; done | md-to-pdf --stylesheet "../theme/style.css" > ../_output/blue-paper.pdf
# cd ../_output
# echo; echo "Output Folder Listing"
# ls
# cd ..
#
# - uses: actions/upload-artifact@v1
# with:
# name: output
# path: _output