Skip to content

Update build

Update build #5

Workflow file for this run

name: Draft PDF
on:
push:
branches: [paper]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: 'pages'
cancel-in-progress: true
jobs:
Deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Make dist
run: mkdir dist
- name: Build HTML
uses: docker://pandoc/core:2.9
with:
args: >-
--standalone
--output=dist/index.html
--csl="https://raw.githubusercontent.com/citation-style-language/styles/master/ieee.csl"
--template="https://manzt.sh/pandoc.html"
paper.md
- name: Build draft PDF
uses: openjournals/openjournals-draft-action@master
with:
journal: joss
paper-path: paper.md
- run: mv paper.pdf dist/
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
path: './dist'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4