make the form of the vodml-ids normative #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |