From 7da3957ee1cf5bd039affd6fa2d7b72cb30296b8 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 20 Jun 2026 19:07:55 -0400 Subject: [PATCH] fix: add Docker CLI install step before registry login --- .gitea/workflows/build-and-deploy.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitea/workflows/build-and-deploy.yml b/.gitea/workflows/build-and-deploy.yml index 37cded9..1726364 100644 --- a/.gitea/workflows/build-and-deploy.yml +++ b/.gitea/workflows/build-and-deploy.yml @@ -42,6 +42,11 @@ jobs: echo "full=${REGISTRY_HOST}/${REPO}:${TAG}" >> "$GITHUB_OUTPUT" echo "latest=${REGISTRY_HOST}/${REPO}:latest" >> "$GITHUB_OUTPUT" + - name: Install Docker CLI + run: | + apt-get update -qq + apt-get install -y -qq docker.io + - name: Log in to Gitea Container Registry run: | echo "${{ secrets.GITEA_TOKEN }}" | \