Fix: Add missing git/bash installation step for docker:latest image

This commit is contained in:
2025-10-31 15:56:09 +01:00
parent 15c2e6000b
commit 001aa1c9b0

View File

@@ -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 }}"