Dry-run tweak.

This commit is contained in:
2025-10-02 06:30:30 -04:00
parent 31c6f922bd
commit e83127d4f6
@@ -189,6 +189,20 @@ jobs:
with:
version: ${{ env.HC_VAULT_VERSION }}
- name: Pre-pull service images
run: |
# Pull only the images needed for this dry run
for svc in ${DOCKER_SVC_LIST}; do
echo "Resolving image for service: $svc"
image=$(docker compose config | yq -r ".services[\"$svc\"].image")
if [ -n "$image" ] && [ "$image" != "null" ]; then
echo "Pulling $image"
docker pull "$image"
else
echo "⚠️ No image defined for $svc (might be build-only)"
fi
done
- name: Gotify Notification
uses: eikendev/gotify-action@master
with: