Update JOSS manuscript #9
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
# Automate publication manuscripts. | |
# | |
# Publications currently include: | |
# - J. Open Source Softw. | |
# | |
name: publication | |
on: | |
push: | |
branches: | |
# Host publications on branch 'main'. | |
- main | |
paths: | |
# Append publications. | |
- publication/joss/** | |
- .github/workflows/publication.yml | |
jobs: | |
joss: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# By default, the source .md and product .pdf are both named 'paper' | |
# and reside in the same directory. | |
- name: Build draft PDF | |
uses: openjournals/openjournals-draft-action@master | |
with: | |
journal: joss | |
paper-path: publication/joss/paper.md | |
- name: Upload draft PDF | |
uses: actions/upload-artifact@v3 | |
with: | |
name: paper | |
path: publication/joss/paper.pdf |