Fix kustomize install: download binary, not apt package
Some checks failed
CI / changes (push) Successful in 5s
CI / lint-and-test (push) Successful in 23s
Deploy Production / deploy (push) Failing after 2m35s
CI / build (push) Has been skipped

kustomize isn't in Debian repos. Download from GitHub releases.
This commit is contained in:
Julia McGhee
2026-03-21 16:36:06 +00:00
parent 22488d5bf5
commit eb8e090283
2 changed files with 8 additions and 2 deletions

View File

@@ -12,7 +12,10 @@ jobs:
with:
fetch-depth: 2
- run: apt-get update && apt-get install -y jq kustomize
- name: Install tools
run: |
apt-get update && apt-get install -y jq curl
curl -sL https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv5.6.0/kustomize_v5.6.0_linux_amd64.tar.gz | tar xz -C /usr/local/bin
- run: corepack enable && corepack prepare pnpm@latest --activate