Minor adjustments #2
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 PDF Documentation | |
on: | |
push: | |
branches: | |
- main | |
- 'testing/**' | |
- 'feature/**' | |
- 'hotfix/**' | |
permissions: | |
contents: write | |
jobs: | |
build-integrate-pdf: | |
runs-on: [ubuntu-22.04] | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Build PDF | |
run: | | |
cd doc/ibex/tgg/integrate-framework | |
docker run --rm -v $PWD:/data maxkratz/pandoc-builder:latest ./md2pdf.sh | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: integrate.pdf | |
path: doc/ibex/tgg/integrate-framework/integrate.pdf |