-
Notifications
You must be signed in to change notification settings - Fork 1
34 lines (32 loc) · 990 Bytes
/
std.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Standard Document PDF Preview generation
on:
push:
branches: [20-update-vo-dml-standard-document]
pull_request:
branches: [20-update-vo-dml-standard-document]
jobs:
build:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup dependencies
run: |
sudo apt -y update
sudo apt -y install pandoc wkhtmltopdf
- name: make the document
working-directory: doc/std
run: |
make VO-DML.pdf
- name: upload the std doc
uses: actions/upload-artifact@v4
with:
name: VO-DML-WD
path: doc/std/VO-DML.pdf
- name: Creates a release in GitHub and uploads attachments
env:
GITHUB_TOKEN: ${{ github.TOKEN }}
shell: bash
run: |
gh release delete WD-1.1 --cleanup-tag -y
gh release -n "latest working draft" create WD-1.1 doc/std/VO-DML.pdf