Update symbol_resolution.md #24
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: Publish Generated Documentation | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
archive-build-artifacts: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Prepare documentation generation | |
run: sh preparedoc.sh | |
- name: Generate HTML documentation | |
uses: docker://pandoc/latex:2.9 | |
with: | |
args: -c css/documentation.css -s build/source.md --metadata pagetitle="StarLasu Overview" -o build/htmldoc/StarLasuOverview.html | |
- name: Generate PDF documentation | |
uses: docker://pandoc/latex:2.9 | |
with: | |
args: -c css/documentation.css -H configuration/listings-setup.tex --variable colorlinks=true build/source.md --listings --metadata pagetitle="StarLasu Overview" -o build/pdfdoc/StarLasuOverview.pdf | |
- name: Upload HTML documentation | |
uses: actions/upload-artifact@v2 | |
with: | |
name: StarLasu Documentation (HTML) | |
path: build/htmldoc | |
- name: Upload PDF documentation | |
uses: actions/upload-artifact@v2 | |
with: | |
name: StarLasu Documentation (PDF) | |
path: build/pdfdoc |