Open Journals PDF Generator
ActionsTags
(1)Create a draft PDF of an Open Journals article.
Add a file .github/workflows/draft-pdf.yml
to your repo.
on: [push]
jobs:
paper:
runs-on: ubuntu-latest
name: Paper Draft
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build draft PDF
uses: openjournals/openjournals-draft-action@master
with:
journal: joss
paper-path: paper.md
- name: Upload
uses: actions/upload-artifact@v1
with:
name: paper
path: paper.pdf
This will build the paper.pdf and make it available as an artifact after each build.
The build can be configured by setting the following inputs.
The journal for to which this paper will be submitted. May be
either joss
or jose
. Defaults to joss
.
Filename of the paper, relative to the project's root directory.
Defaults to paper.md
.
Open Journals PDF Generator is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.
Tags
(1)Open Journals PDF Generator is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.