update to plot #27
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 paper PDF | |
| on: | |
| push: | |
| branches: | |
| - joss_paper # working branch | |
| paths: | |
| - "Tools/paper/**" # only rebuild if something in /paper changes | |
| workflow_dispatch: | |
| jobs: | |
| paper: | |
| runs-on: ubuntu-latest | |
| name: Generate paper draft | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Build draft PDF | |
| uses: openjournals/openjournals-draft-action@master | |
| with: | |
| journal: joss | |
| paper-path: Tools/paper/paper.md | |
| - name: Upload | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: paper | |
| path: Tools/paper/paper.pdf | |
| - name: Commit updated PDF | |
| uses: stefanzweifel/git-auto-commit-action@v4 | |
| continue-on-error: true | |
| with: | |
| commit_message: "Auto-update generated JOSS draft PDF" | |
| file_pattern: "Tools/paper/paper.pdf" | |