From eb8e0902834ab12a0a6f6e7695f0ced1437cc9b9 Mon Sep 17 00:00:00 2001 From: Julia McGhee Date: Sat, 21 Mar 2026 16:36:06 +0000 Subject: [PATCH] Fix kustomize install: download binary, not apt package kustomize isn't in Debian repos. Download from GitHub releases. --- .gitea/workflows/deploy-preview.yaml | 5 ++++- .gitea/workflows/deploy-production.yaml | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy-preview.yaml b/.gitea/workflows/deploy-preview.yaml index 545800f..ab17a3c 100644 --- a/.gitea/workflows/deploy-preview.yaml +++ b/.gitea/workflows/deploy-preview.yaml @@ -10,7 +10,10 @@ jobs: steps: - uses: actions/checkout@v4 - - 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 diff --git a/.gitea/workflows/deploy-production.yaml b/.gitea/workflows/deploy-production.yaml index 683dc7d..299923d 100644 --- a/.gitea/workflows/deploy-production.yaml +++ b/.gitea/workflows/deploy-production.yaml @@ -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