mirror of
https://github.com/jeertmans/manim-slides.git
synced 2025-08-06 14:19:52 +08:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 1 to 3. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v1...v3) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[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@v3
|
|
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
|