Skip to content

Commit

Permalink
add a CI (to be tested in future commits)
Browse files Browse the repository at this point in the history
  • Loading branch information
eviau-artefactual committed Jan 4, 2024
1 parent ec469ba commit 82ab346
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/make-bibs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: pandoc-make-bibs

on: push

jobs:
make_md:
runs-on: ubuntu-22.04
steps:
- uses: docker://pandoc/core:2.9
with:
args: >-
-t markdown_strict
--filter=pandoc-citeproc generatebib.md
-o output/archivematica-bib.md
--bibliography archivematica.bib
make_html:
runs-on: ubuntu-22.04
steps:
- uses: docker://pandoc/core:2.9
with:
args: >-
--filter=pandoc-citeproc
--standalone generatebib.md
-o output/archivematica-bib.html
--bibliography archivematica.bib
upload_to_github:
runs-on: ubuntu-22.04
steps:
- uses: actions/upload-artifact@v3
with:
name: output
path: ./

0 comments on commit 82ab346

Please sign in to comment.