feat: add script to generate offline docs #1
Workflow file for this run
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 an offline version of the documentation | ||
| on: | ||
| workflow_dispatch: | ||
| jobs: | ||
| build: | ||
| name: Generate documentation and upload | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: read | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - run: scripts/generate-offline.sh | ||
| shell: bash | ||
| - name: Debug | ||
| if: always() | ||
| continue-on-error: true | ||
| run: ls -lR | ||
| shell: bash | ||
| - uses: actions/upload-artifacts@v4 | ||
| with: | ||
| name: fluentdo-agent-documentation | ||
| path: *.tgz | ||
| if-no-files-found: error | ||