Skip to content

Commit

Permalink
Add a GitHub Workflow to do Pandoc conversion (cabforum#234)
Browse files Browse the repository at this point in the history
This builds the BRs, the EVGs, and the NSRs via GitHub Actions. However,
all of these are expected to fail at present, as further adjustments are
needed to each which will need to be balloted.
  • Loading branch information
sleevi committed Dec 2, 2020
1 parent 219e2c0 commit 8f63128
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build-draft-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build Draft Guidelines
on: [push, pull_request]
jobs:
build_brs:
strategy:
matrix:
document:
- 'BR.md'
- 'EVG.md'
- 'NSR.md'
name: Build ${{ matrix.document }}
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: cabforum/build-guidelines-action@v1.0.0-rc4
with:
markdown-file: docs/${{ matrix.document }}
pdf: true
docx: true
lint: true
draft: true
- uses: actions/upload-artifact@v2
with:
name: Converted ${{ matrix.document }}
path: |
docs/*.pdf
docs/*.docx
if-no-files-found: 'error'
retention-days: 21

0 comments on commit 8f63128

Please sign in to comment.