build docs PDF #88585
This file contains hidden or 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 docs PDF | |
| on: | |
| push: | |
| branches: [ asf-site ] | |
| schedule: | |
| - cron: '*/30 * * * *' | |
| jobs: | |
| build: | |
| name: publish PDF | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Set up Python Env | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: '3.8' | |
| - name: generate PDF | |
| run: | | |
| bash .github/scripts/generate-pdf.sh | |