Skip to content

Commit

Permalink
Merge pull request #67 from nichollsh/joss
Browse files Browse the repository at this point in the history
JOSS paper draft
  • Loading branch information
nichollsh authored Sep 17, 2024
2 parents fee3b01 + 30cb58c commit 09e83fe
Show file tree
Hide file tree
Showing 17 changed files with 2,031 additions and 1,593 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
# This job updates the documentation and pushes it to GitHub pages
# This occurs when a PR to main is merged

name: Documentation
name: Docs

on:
push:
branches: [main]
paths:
- docs/**
- !docs/paper/**
- .github/workflows/documentation.yml


jobs:
build:
Expand Down
28 changes: 28 additions & 0 deletions .github/workflows/draft-pdf.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Draft PDF
on:
push:
paths:
- docs/paper/**
- .github/workflows/draft-pdf.yml

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/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
4 changes: 2 additions & 2 deletions .github/workflows/install_and_test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This job installs AGNI and SOCRATES, and tests AGNI
# This occurs when a PR to main is created

name: AGNI_main_tests
name: Tests

on:
pull_request:
Expand All @@ -12,7 +12,7 @@ on:
jobs:
install:
runs-on: ubuntu-latest
name: AGNI_main_tests
name: install_and_test
steps:
- uses: actions/checkout@v4

Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,6 @@ __pycache__
debug/
nogit*
.osfcli.config

# Paper
paper/main.pdf
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors:
given-names: "Harrison"
orcid: "https://orcid.org/0000-0002-8368-4641"
title: "AGNI"
version: 0.8.1
version: 0.8.2
doi: 10.xx/xx.xx
date-released: 2024-09-13
url: "https://github.com/nichollsh/AGNI"
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "AGNI"
uuid = "ede838c1-9ec3-4ebe-8ae8-da4091b3f21c"
authors = ["Harrison Nicholls <[email protected]>"]
version = "0.8.1"
version = "0.8.2"

[deps]
ArgParse = "c7e460c6-2fb9-53a9-8c5b-16f535851c63"
Expand Down
8 changes: 4 additions & 4 deletions codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@
"@type": "Person",
"email": "[email protected]",
"name": "Harrison Nicholls",
"affiliation": "University of Oxford"
"affiliation": "Department of Physics, University of Oxford, Parks Road, Oxford OX1 3PU, UK"
}
],
"identifier": "",
"codeRepository": "https://github.com/nichollsh/AGNI",
"datePublished": "2024-09-13",
"dateModified": "2024-09-13",
"dateCreated": "2024-09-13",
"description": "A 1D radiative-convective model for the atmospheres of hot terrestrial planets.",
"keywords": "fortran, julia, physics, radiative-transfer, exoplanets, convection, radiation, planetary-science, atmosphere-model",
"description": "A radiative-convective model for the atmospheres of rocky planets",
"keywords": "physics, radiative transfer, exoplanets, astronomy, convection, radiation, planets, atmospheres",
"license": "GPL v3.0",
"title": "AGNI",
"version": "0.8.1"
"version": "0.8.2"
}
Loading

0 comments on commit 09e83fe

Please sign in to comment.