older version #8
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: 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: Build HTML | |
uses: docker://pandoc/core:2.9 | |
with: | |
args: >- | |
--standalone | |
--output=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: | | |
mkdir dist | |
mv index.html dist/index.html | |
mv paper.pdf dist/paper.pdf | |
- name: Upload artifact | |
uses: actions/upload-artifact@v1 | |
with: | |
name: github-pages | |
path: './dist' | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |