remove mentions of KISS #229
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: Generate Docs PDF | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| pdf: | |
| permissions: | |
| contents: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 | |
| - name: Install Prince | |
| run: | | |
| curl https://www.princexml.com/download/prince-15.4.1-linux-generic-x86_64.tar.gz -O | |
| tar zxf prince-15.4.1-linux-generic-x86_64.tar.gz | |
| cd prince-15.4.1-linux-generic-x86_64 | |
| yes "" | sudo ./install.sh | |
| - name: Build PDF | |
| run: npx docusaurus-prince-pdf --toc -u https://docs.getaurora.dev -o pdf/aurora.pdf | |
| - name: Upload results | |
| uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5 | |
| with: | |
| name: aurora | |
| # The output filename can be specified with --output option | |
| path: pdf/aurora.pdf | |
| if-no-files-found: error | |
| overwrite: true | |
| - name: Upload Release Artifact | |
| if: github.event_name != 'pull_request' | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| run: | | |
| gh release upload --clobber 0.1 pdf/aurora.pdf |