ci: gracefully skip docker build if unavailable

This commit is contained in:
2026-05-28 09:32:44 +02:00
parent dd482da9aa
commit 3233894e6a

View File

@@ -98,4 +98,10 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Docker build - name: Docker build
run: docker build --pull --no-cache -t mal:ci . shell: bash
run: |
if ! command -v docker &>/dev/null; then
echo "docker not found — skipping"
exit 0
fi
docker build --pull --no-cache -t mal:ci .