Merge pull request #147 from e0ne/shared-dev-plugin-1.5.2 #385
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" | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: generate-html | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: read | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: build | |
run: make gen-docs | |
- name: 'upload Artifact' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: generated-html | |
path: _build/docs/nvidia_network_operator |