From 001aa1c9b0538cb6173a6884145150d060b33e9d Mon Sep 17 00:00:00 2001 From: Michael Schiemer Date: Fri, 31 Oct 2025 15:56:09 +0100 Subject: [PATCH] Fix: Add missing git/bash installation step for docker:latest image --- .gitea/workflows/production-deploy.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitea/workflows/production-deploy.yml b/.gitea/workflows/production-deploy.yml index d5b91a5f..12d6bbb1 100644 --- a/.gitea/workflows/production-deploy.yml +++ b/.gitea/workflows/production-deploy.yml @@ -103,6 +103,11 @@ jobs: image_tag: ${{ steps.meta.outputs.tag }} commit_sha: ${{ steps.meta.outputs.commit_sha }} steps: + - name: Install git and setup environment + run: | + # docker:latest is minimal (Alpine-based), install git and bash + apk add --no-cache git bash curl + - name: Checkout code run: | REF_NAME="${{ github.ref_name }}"