Enable annotating contributor roles #80
Workflow file for this run
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
name: Compile example paper | |
on: | |
# Build any branch | |
push: | |
paths: | |
- 'example/*' | |
pull_request: | |
paths: | |
- 'example/*' | |
# Build, but don't push on pull requests | |
jobs: | |
build: | |
name: Example PDF | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build draft PDF | |
run: >- | |
docker run \ | |
--volume "$(pwd):/data" \ | |
--user "$(id -u):$(id -g)" \ | |
openjournals/inara:latest \ | |
-o contextpdf,pdf,crossref,jats,preprint example/paper.md | |
- name: Upload draft PDF | |
uses: actions/upload-artifact@v3 | |
with: | |
name: draft | |
path: | | |
example/jats/paper.jats | |
example/paper.context.pdf | |
example/paper.crossref | |
example/paper.pdf | |
example/paper.preprint.tex | |
- name: Build production PDF | |
run: >- | |
docker run \ | |
--volume "$(pwd):/data" \ | |
--user "$(id -u):$(id -g)" \ | |
openjournals/inara:latest \ | |
-o contextpdf,pdf,crossref,jats,preprint -p example/paper.md | |
- name: Upload production PDF | |
uses: actions/upload-artifact@v3 | |
with: | |
name: production | |
path: | | |
example/jats/paper.jats | |
example/paper.context.pdf | |
example/paper.crossref | |
example/paper.pdf | |
example/paper.preprint.tex | |
- name: Build production golden PDF | |
run: >- | |
docker run \ | |
--volume "$(pwd):/data" \ | |
--user "$(id -u):$(id -g)" \ | |
openjournals/inara:latest \ | |
-o contextpdf,pdf,crossref,jats,preprint -m test/metadata.yaml -p example/paper.md | |
- name: Upload production golden PDF | |
uses: actions/upload-artifact@v3 | |
with: | |
name: production-golden | |
path: | | |
example/jats/paper.jats | |
example/paper.context.pdf | |
example/paper.crossref | |
example/paper.pdf | |
example/paper.preprint.tex | |
- name: Build draft golden PDF | |
run: >- | |
docker run \ | |
--volume "$(pwd):/data" \ | |
--user "$(id -u):$(id -g)" \ | |
openjournals/inara:latest \ | |
-o contextpdf,pdf,crossref,jats,preprint -m test/metadata.yaml example/paper.md | |
- name: Upload draft golden PDF | |
uses: actions/upload-artifact@v3 | |
with: | |
name: draft-golden | |
path: | | |
example/jats/paper.jats | |
example/paper.context.pdf | |
example/paper.crossref | |
example/paper.pdf | |
example/paper.preprint.tex |