testing if texas is the problem(usually is) #9
This file contains hidden or 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
| name: Draft JOSS PDF | |
| on: | |
| push: | |
| paths: | |
| - paper/paper.md | |
| - paper/paper.bib | |
| - paper/figures/** | |
| - .github/workflows/draft-pdf.yml | |
| jobs: | |
| paper: | |
| runs-on: ubuntu-latest | |
| name: Paper Draft | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Build draft PDF | |
| uses: openjournals/openjournals-draft-action@master | |
| with: | |
| journal: joss | |
| paper-path: paper/paper.md | |
| - name: Upload PDF | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: joss-paper-draft | |
| path: paper/paper.pdf |