tiny updates for better output #13
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: pandoc-make-bibs | |
on: | |
push: | |
branches: | |
- 'dev/**' | |
- 'restructure' | |
- 'main' | |
jobs: | |
make_publish_bib: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: create output dir | |
id: make_dir | |
run: mkdir output | |
- uses: docker://pandoc/core:2.9 | |
with: | |
args: >- | |
-t markdown_strict | |
--filter=pandoc-citeproc | |
generatebib.md | |
-o output/archivematica-bib.md | |
--bibliography archivematica.bib | |
- uses: docker://pandoc/core:2.9 | |
with: | |
args: >- | |
--filter=pandoc-citeproc | |
--standalone generatebib.md | |
-o output/archivematica-bib.html | |
--bibliography archivematica.bib | |
- name: make README | |
run: cat intro_placeholder.md output/archivematica-bib.md > output/README.md | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: output | |
path: null |