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.
21 lines
412 B
21 lines
412 B
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
|
|
|