docs: update docs folder with a base set of docs and create pages flo… #319
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 | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| validate-manifests: | |
| name: Validate Kustomize manifests | |
| timeout-minutes: 10 | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }}-validate-manifests | |
| cancel-in-progress: true | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install kustomize | |
| run: | | |
| set -euo pipefail | |
| curl -fsSL "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | bash -s -- 5.7.1 | |
| sudo mv kustomize /usr/local/bin/ | |
| - name: Validate Kustomize manifests | |
| run: | | |
| ./scripts/validate-manifests.sh |