mirror of
https://github.com/CHEF-KOCH/Warez
synced 2025-01-28 14:52:43 +00:00
70b8fa0d43
- Mirror Repository (broken, I'm well aware of it) - Convert the project to PDF (broken, I'm aware of it, the problem is that the path is hard-coded, the author needs to fix it) - Updated Browser extension, removed the not working ones - Minor changed in the readme.md
28 lines
694 B
YAML
28 lines
694 B
YAML
on: [push]
|
|
|
|
# pdf.yml
|
|
name: 'Create PDF'
|
|
# https://github.com/marketplace/actions/create-pdf
|
|
# https://github.com/mkrakowitzer/actions-makepdfs/
|
|
description: 'Creates PDF files from github markdown'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: mkrakowitzer/actions-makepdfs@master
|
|
if: github.ref == 'refs/heads/master'
|
|
- uses: actions/upload-artifact@v1
|
|
|
|
inputs:
|
|
markdown_dir: '.'
|
|
description: 'Location of markdown files in github repository'
|
|
required: true
|
|
#default: 'doc'
|
|
output_dir:
|
|
description: 'Location to output PDF files to'
|
|
required: true
|
|
default: 'pdf'
|
|
|
|
branding:
|
|
icon: 'activity'
|
|
color: 'green'
|