ci: gracefully skip docker build if unavailable

This commit is contained in:
2026-05-28 09:32:44 +02:00
committed by Milas Holsting
parent 429974dc33
commit a4f46c67a2

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 .