Update pdf.yml #2
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: Generate Docs PDF | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
pdf: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Build PDF | |
run: docker run --rm -it -v $(pwd)/pdf:/app/pdf openbayes/docusaurus-prince-pdf -u https://docs.projectbluefin.io | |
- name: Upload results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: result | |
# The output filename can be specified with --output option | |
path: pdf/bluefin.pdf | |
if-no-files-found: error |