Add executable entrypoint information TE entry #147
Workflow file for this run
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: Build specification | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
name: build pdf and html | |
runs-on: ubuntu-latest | |
environment: pr_ci | |
steps: | |
- uses: actions/checkout@v3 | |
- run: | | |
sudo apt-get update | |
sudo apt-get install -y librsvg2-bin \ | |
python3-sphinx latexmk texlive-latex-extra \ | |
python3-sphinxcontrib.svg2pdfconverter | |
- run: make latexpdf | |
- run: make html | |
- name: Archive pdf | |
uses: actions/upload-artifact@v3 | |
with: | |
name: firmware_handoff.pdf | |
path: build/latex/firmware_handoff.pdf |