Commented out Bibtex in VnVPlan makefile #6
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: Continuous Integration | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build-documentation: | |
runs-on: ubuntu-latest | |
container: | |
image: danteev/texlive:latest | |
# No need to build your own Dockerfile or push an image | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
# No apt-get install needed because the container already has TeX Live | |
- name: Build PDFs | |
working-directory: docs | |
run: | | |
make all | |
- name: Upload PDFs as Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: documentation-pdfs | |
path: docs/*.pdf |