mirror of
https://github.com/jeertmans/manim-slides.git
synced 2025-08-06 14:19:52 +08:00

* chore(misc): JOSE paper * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * fix(ci): update path * fix(ci): tab error * fix(ci): path to paper * fix(paper): updates * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * fix(paper): typos --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
34 lines
890 B
YAML
34 lines
890 B
YAML
# Simple workflow for deploying static content to GitHub Pages
|
|
name: Create JOSE Paper
|
|
|
|
on:
|
|
# Runs on pushes targeting the default branch
|
|
push:
|
|
paths:
|
|
- paper/*
|
|
|
|
# Allows you to run this workflow manually from the Actions tab
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
paper:
|
|
runs-on: ubuntu-latest
|
|
name: Paper Draft
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Build draft PDF
|
|
uses: openjournals/openjournals-draft-action@master
|
|
with:
|
|
journal: jose
|
|
# This should be the path to the paper within your repo.
|
|
paper-path: paper/paper.md
|
|
- name: Upload
|
|
uses: actions/upload-artifact@v1
|
|
with:
|
|
name: paper
|
|
# This is the output path where Pandoc will write the compiled
|
|
# PDF. Note, this should be the same directory as the input
|
|
# paper.md
|
|
path: paper/paper.pdf
|