Docs: updates staff catalog search imageto show Library Groups and Sh… #1332
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 | |
| on: | |
| push: | |
| paths: | |
| - 'docs/**' | |
| pull_request: | |
| paths: | |
| - 'docs/**' | |
| jobs: | |
| build_docs: | |
| name: Build Docs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Generate Docs Package | |
| run: | | |
| cd docs | |
| sed -i 's/branches.*/branches: [HEAD]/' site.yml | |
| perl generate_docs.pl --base-url http://example.com | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: built-docs | |
| path: docs/output | |
| retention-days: 2 |