Update .drone.yml
Some checks reported errors
continuous-integration/drone/push Build was killed

fixes
This commit is contained in:
2025-10-10 10:13:38 +00:00
parent 54cabc5f7f
commit 1f65582e77

View File

@@ -34,7 +34,8 @@ steps:
commands:
- IMAGE_TAG=$(cat /drone/src/LATEST_TAG.txt)
- echo "Checking if apps/homepage:$IMAGE_TAG exists on remote Docker..."
- if docker image inspect apps/homepage:$IMAGE_TAG > /dev/null 2>&1; then
- |
if docker image inspect apps/homepage:$IMAGE_TAG > /dev/null 2>&1; then
echo "✅ Docker image apps/homepage:$IMAGE_TAG already exists — skipping build";
exit 78; # stop pipeline gracefully
else