mirror this repo: https://github.com/The-Run-Philosophy-Organization/run.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
818 B
29 lines
818 B
name: Docs to PDF
|
|
# This workflow is triggered on pushes to the repository.
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
# Paths can be used to only trigger actions when you have edited certain files, such as a file within the /docs directory
|
|
paths:
|
|
- '**/**.md'
|
|
|
|
jobs:
|
|
converttopdf:
|
|
name: Build PDF
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: baileyjm02/markdown-to-pdf@v1
|
|
with:
|
|
input_dir: docs
|
|
output_dir: pdfs
|
|
images_dir: docs/images
|
|
# for example <img src="./images/file-name.png">
|
|
image_import: ./images
|
|
# Default is true, can set to false to only get PDF files
|
|
build_html: false
|
|
- uses: actions/upload-artifact@v1
|
|
with:
|
|
name: docs
|
|
path: pdfs
|
|
|