From c35bb997662b66d906408e3714aaac7a0dfa7ba1 Mon Sep 17 00:00:00 2001 From: Paul Harrison Date: Thu, 16 May 2024 11:34:32 +0100 Subject: [PATCH] github action to make the std WD --- .github/workflows/std.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/std.yml diff --git a/.github/workflows/std.yml b/.github/workflows/std.yml new file mode 100644 index 00000000..71bea44d --- /dev/null +++ b/.github/workflows/std.yml @@ -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