Skip to content

Fill-in affiliation and fix name #21

Fill-in affiliation and fix name

Fill-in affiliation and fix name #21

Workflow file for this run

name: Draft PDF
on:
push:
paths:
- docs/paper-joss/*
- .github/workflows/draft-pdf.yml*
permissions:
pull-requests: write
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
# This should be the path to the paper within your repo.
paper-path: docs/paper-joss/paper.md
- name: Upload
uses: actions/upload-artifact@v4
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: docs/paper-joss/paper.pdf
link:
needs: paper # make sure the artifacts are uploaded first
runs-on: ubuntu-latest
permissions:
contents: write # for commenting on your commit
pull-requests: write # for commenting on your pr
steps:
- uses: beni69/artifact-link@v1
with:
token: ${{ github.token }}