Implement membership rename across schema, ORM, APIs, and tooling #6
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: Metaboost infra alpha contracts | |
| on: | |
| pull_request: | |
| paths: | |
| - "infra/k8s/**" | |
| - ".github/workflows/metaboost-infra-alpha-contracts.yml" | |
| workflow_dispatch: | |
| jobs: | |
| validate-metaboost-infra-alpha-contracts: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| - name: Install kustomize | |
| run: | | |
| set -euo pipefail | |
| KUSTOMIZE_VER=5.5.0 | |
| curl -fsSL \ | |
| "https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv${KUSTOMIZE_VER}/kustomize_v${KUSTOMIZE_VER}_linux_amd64.tar.gz" \ | |
| | sudo tar xvz -C /usr/local/bin | |
| kustomize version | |
| - name: Render infra/k8s/alpha overlays | |
| env: | |
| KUSTOMIZE_REF: ${{ github.event.pull_request.head.sha || github.sha }} | |
| run: bash scripts/k8s/kustomize-build-metaboost-alpha-overlays.sh |