Skip to content

Commit

Permalink
testing workflow on this branch
Browse files Browse the repository at this point in the history
  • Loading branch information
eviau-artefactual committed Jan 4, 2024
1 parent 66d5113 commit 648beb4
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/make-bibs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,40 @@ jobs:
with:
name: output
path: ./

on:
pull_request:
types:
- opened
branches:
- 'dev/**'
- 'restructure'

jobs:
make_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: >-
--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 output/archivematica-bib.md intro_placeholder.md > output/README.md
- uses: actions/upload-artifact@v3
with:
name: output
path: ./

0 comments on commit 648beb4

Please sign in to comment.