fix: readding maas-api service account and removing ref to non-existing secret #258
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 | |
| 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 |