Automatic Pull Request #2477
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: radix-flux-pr | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| kustomize-build: | |
| name: kustomize-build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Kustomize build everything | |
| run: | | |
| for f in `find . -iname "kustomization.yaml"` | |
| do | |
| echo "Running kustomize build $(dirname $f)..." | |
| kustomize build $(dirname $f) >/dev/null || exit | |
| done |