geoffrey-vl / actions-makepdfs

A github action to make PDF froms files markdown documentation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A github action for creating PDFs from github markdown

This action creates PDF documents from github markdown

Inputs

markdown_dir

Required Location of markdown files in github repository. Default doc.

output_dir

Required Location to output PDF files to. Default tmp.

Example usage

on:
  push:
    paths:
      - 'doc/**'

name: CreatePDFs

jobs:
  makepdfs:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v1
    - uses: mkrakowitzer/actions-makepdfs@master
      if: github.ref == 'refs/heads/master'
      with:
        markdown_dir: doc
        output_dir: tmp
    - uses: actions/upload-artifact@v1
      with:
        name: platform-architecture-docs
        path: tmp

About

A github action to make PDF froms files markdown documentation

License:MIT License


Languages

Language:CSS 45.9%Language:JavaScript 40.1%Language:Dockerfile 11.6%Language:HTML 2.4%