Skip to content

Commit

Permalink
github action to make the std WD
Browse files Browse the repository at this point in the history
  • Loading branch information
pahjbo committed May 16, 2024
1 parent 4e94810 commit c35bb99
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/std.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Standard Document PDF Preview generation

on:
push:
pull_request:

jobs:
build:
runs-on: ubuntu_latest

steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup dependencies
run: |
sudo apt update
sudo apt install pandoc
- name: make the document
run: |
make -C doc/std VO-DML.pdf
- name: upload the std doc
uses: actions/upload-artifact@v4
with:
name: VO-DML-WD
path: doc/std/VO-DML.pdf

0 comments on commit c35bb99

Please sign in to comment.