-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #155 from artefactory/joss
ADD: JoSS submission Paper & Experiments
- Loading branch information
Showing
17 changed files
with
2,267 additions
and
632 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Open Journals PDF Generator | ||
description: Create a draft PDF for an Open Journals paper | ||
inputs: | ||
journal: | ||
description: Target journal, must be either "joss" or "jose" | ||
required: false | ||
default: joss | ||
paper-path: | ||
description: >- | ||
Path to the main paper Markdown file, relative to the | ||
project's root directory. | ||
required: false | ||
default: 'paper.md' | ||
runs: | ||
using: docker | ||
image: 'docker://openjournals/inara:latest' | ||
env: | ||
GIT_SHA: $GITHUB_SHA | ||
JOURNAL: ${{ inputs.journal }} | ||
args: | ||
- -o pdf | ||
- -p | ||
- ${{ inputs.paper-path }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Open Journals PDF Generator | ||
description: Create a draft PDF for an Open Journals paper | ||
inputs: | ||
journal: | ||
description: Target journal, must be either "joss" or "jose" | ||
required: false | ||
default: joss | ||
paper-path: | ||
description: >- | ||
Path to the main paper Markdown file, relative to the | ||
project's root directory. | ||
required: false | ||
default: 'paper.md' | ||
runs: | ||
using: docker | ||
image: 'docker://openjournals/inara:latest' | ||
env: | ||
GIT_SHA: $GITHUB_SHA | ||
JOURNAL: ${{ inputs.journal }} | ||
args: | ||
- -o pdf | ||
- -p | ||
- ${{ inputs.paper-path }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Paper draft to PDF | ||
|
||
on: | ||
push: | ||
branches: | ||
- paper | ||
|
||
jobs: | ||
paper: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Build draft PDF | ||
uses: ./.github/actions/build-draft | ||
with: | ||
journal: joss | ||
paper-path: docs/paper/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/paper.pdf |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.