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.
22 lines
501 B
22 lines
501 B
name: Build document
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
types: [opened, reopened]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Build the document
|
|
with:
|
|
git clone https://github.com/The-Run-Philosophy-Organization/run.git
|
|
node index.js ./Run
|
|
root_file: |
|
|
Run.tex
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: Run.pdf
|
|
path: ./Run/Run.pdf
|
|
|