Merge pull request #40 from Bonnarel/main #9
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: Update PDF Preview | |
env: | |
doc_name: ObsCoreExtensionForRadioData | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v1 | |
with: | |
submodules: true | |
- name: Setup dependencies | |
run: | | |
sudo apt update | |
sudo apt install texlive-latex-base texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended xsltproc latexmk cm-super | |
sudo snap install pdftk | |
- name: Build the document | |
run: make ${{ env.doc_name }}-draft.pdf | |
- name: Check the output | |
run: | | |
test -f ${{ env.doc_name }}-draft.pdf | |
test -f ${{ env.doc_name }}.bbl | |
- name: Keep the PDF artefact | |
uses: actions/upload-artifact@v1 | |
with: | |
name: PDF Preview | |
path: ${{ env.doc_name }}.pdf | |