1
0
Fork 0

Creates action for PDF compilation

This commit is contained in:
Alicia Sykes 2022-07-23 19:24:59 +01:00 committed by GitHub
parent c79db50c07
commit 3ae905a83e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 26 additions and 0 deletions

26
.github/workflows/compile-pdf.yml vendored Normal file
View File

@ -0,0 +1,26 @@
# Generates and saved a PDF document from the main markdown file
# Easier to read on certain devices, or for users with accesibility needs
name: 📁 Compile PDF Document
on:
workflow_dispatch: # Manual dispatch
schedule:
- cron: '0 5 * * 6' # Every Saturday morning.
jobs:
# Job #1 - Generate an embedded SVG asset, showing all contributors
generate-contributors:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: baileyjm02/markdown-to-pdf@v1
with:
input_path: README.md
output_dir: .github/assets/awesome-privacy.pdf
build_pdf: true
build_html: false
table_of_contents: false
- uses: actions/upload-artifact@v1
with:
name: docs
path: pdfs