From a083383121138822096da1b57d1e6e47e54719a5 Mon Sep 17 00:00:00 2001 From: Marcus Date: Sat, 31 Jan 2026 13:53:09 -0300 Subject: [PATCH] ajustes novos --- .forgejo/workflows/deploy.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml index 776d1a5..52112c9 100644 --- a/.forgejo/workflows/deploy.yaml +++ b/.forgejo/workflows/deploy.yaml @@ -21,6 +21,10 @@ jobs: shell: sh steps: + - name: Ensure curl is installed (minimal) + run: | + command -v curl >/dev/null 2>&1 || apk add --no-cache curl + - name: Install Docker Buildx (REQUIRED for BuildKit) run: | mkdir -p ~/.docker/cli-plugins @@ -72,6 +76,10 @@ jobs: shell: sh steps: + - name: Ensure curl is installed (minimal) + run: | + command -v curl >/dev/null 2>&1 || apk add --no-cache curl + - name: Install kubectl run: | K8S_VERSION=$(curl -s https://dl.k8s.io/release/stable.txt)