mirror of
https://github.com/thegeneralist01/fphistoryru
synced 2026-01-10 14:10:24 +01:00
24 lines
444 B
YAML
24 lines
444 B
YAML
name: Docs to PDF
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- 'index.md'
|
|
|
|
jobs:
|
|
converttopdf:
|
|
name: Build PDF
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: baileyjm02/markdown-to-pdf@v1
|
|
with:
|
|
input_path: index.md
|
|
output_dir: pdfs
|
|
build_html: false
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
name: docs
|
|
path: pdfs
|
|
|