fix(ci): simplify Deploy heredoc to avoid exit code issues
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 7s
Build & Deploy / 🧪 QA (push) Successful in 2m15s
Build & Deploy / 🏗️ Build (push) Successful in 12m57s
Build & Deploy / 🚀 Deploy (push) Failing after 14s
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 8s

This commit is contained in:
2026-03-02 11:39:37 +01:00
parent b639fffe7f
commit aae5275990

View File

@@ -376,9 +376,6 @@ jobs:
cd $SITE_DIR
docker compose -p '${{ needs.prepare.outputs.project_name }}' --env-file '$ENV_FILE' pull
docker compose -p '${{ needs.prepare.outputs.project_name }}' --env-file '$ENV_FILE' up -d --remove-orphans
echo "🔧 Sanitizing payload_migrations table..."
docker exec $DB_CONTAINER psql -U $postgres_DB_USER -d $postgres_DB_NAME -c "DELETE FROM payload_migrations WHERE batch = -1;" 2>/dev/null || true
docker system prune -f --filter 'until=24h'
DEPLOYEOF
- name: 🧹 Post-Deploy Cleanup (Runner)