Update cargo version in manual #47
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: Documentation | |
| on: | |
| workflow_dispatch: | |
| push: | |
| pull_request: | |
| jobs: | |
| manual: | |
| name: Build manual | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: gap-actions/setup-gap@v3 | |
| - uses: gap-actions/build-pkg-docs@v2 | |
| with: | |
| use-latex: 'true' | |
| - name: 'Upload PDF manual' | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Vole manual (PDF) | |
| path: ./doc/manual.pdf | |
| if-no-files-found: error | |
| retention-days: 3 | |
| - name: 'Upload HTML manual' | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Vole manual (HTML) | |
| path: | | |
| doc/*.html | |
| doc/*.css | |
| doc/*.js | |
| if-no-files-found: error | |
| retention-days: 3 |