Try to build pdf again #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push] | |
jobs: | |
paper: | |
runs-on: ubuntu-latest | |
name: Paper Draft | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Build draft PDF | |
uses: openjournals/openjournals-draft-action@master | |
with: | |
journal: joss | |
# Specify the path to the Markdown file for the paper. | |
paper-path: paper/paper.md | |
- name: Upload PDF Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: paper | |
path: paper/paper.pdf |