add Keysight IoT Security Assessment #10
Workflow file for this run
This file contains 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: | |
branches: ['master', 'main'] | |
pull_request: | |
workflow_dispatch: | |
env: | |
PYTHON_VERSION_DEFAULT: "3.10" | |
jobs: | |
docs_json: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: docgen | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python Environment | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.PYTHON_VERSION_DEFAULT }} | |
architecture: 'x64' | |
- name: Generate Schema documentation | |
run: ./gen.sh | |
# Upload docs so the deploy job can pick them up | |
- name: Upload pages artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: docgen/docs # The folder that has your generated docs | |
deploy: | |
runs-on: ubuntu-latest | |
needs: docs_json | |
permissions: | |
pages: write | |
id-token: write | |
steps: | |
- name: Deploy to GitHub Pages | |
uses: actions/deploy-pages@v4 |