Rewrite CI/CD pipeline with deploy-tag change detection and verified deployments
Some checks failed
Deploy / detect (push) Successful in 4s
Deploy / deploy-api (push) Failing after 22s
Deploy / deploy-frontend (push) Successful in 2m5s
Deploy / tag-deploy (push) Successful in 3s

Replace HEAD~1 diff with git tag-based change detection to catch all changes
since last successful deploy. Split into 4 parallel jobs: detect, frontend,
API (with migrations, health check, and rollback), and deploy tagging.
This commit is contained in:
DaX
2026-03-05 01:19:13 +01:00
parent f2ae608b01
commit 2985ea4457
2 changed files with 217 additions and 31 deletions

View File

@@ -1,7 +1,6 @@
const express = require('express');
const { Pool } = require('pg');
const cors = require('cors');
// API v1.1 - sales, customers, analytics
const bcrypt = require('bcryptjs');
const jwt = require('jsonwebtoken');
require('dotenv').config();