permissions #15
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 -p dist | |
cp --dereference --no-preserve=mode,ownership paper.pdf dist/paper.pdf | |
cp --dereference --no-preserve=mode,ownership index.html dist/index.html | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: github-pages | |
path: dist | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |