šŸš€ Amba CI/CD Dashboard

Deployment #40

← Back to List
Repository:

AmbaPay/Amba-events

Branch:

production

Commit:

11b6367425574bf41d1e26cd12c8fb326cc4de76

Status:

failed

Created At:

1/28/2026, 6:13:51 AM

Commands (12)

git rev-parse HEAD
Success Exit: 0
Output:
9ba5ea280700aae03dc0d16ab7ebef4c4080a5f3
git stash save "local changes 2026-01-28T06:13:51.192Z"
Success Exit: 0
Output:
No local changes to save
git reset --hard HEAD
Success Exit: 0
Output:
HEAD is now at 9ba5ea2 Merge pull request 'whitelisted urls' (#8) from dev into production
git fetch https://***:***@gitea.yaltopia.com/AmbaPay/Amba-events.git production
Success Exit: 0
Error:
fatal: unable to bind to '/home/amba/.cache/git/credential/socket': Read-only file system
warning: unable to unlink '/home/amba/.cache/git/credential/socket': Read-only file system
fatal: cache daemon did not start: 
From https://gitea.yaltopia.com/AmbaPay/Amba-events
 * branch            production -> FETCH_HEAD
git checkout production
Success Exit: 0
Output:
Your branch is ahead of 'origin/production' by 10 commits.
  (use "git push" to publish your local commits)
Error:
Already on 'production'
git pull https://***:***@gitea.yaltopia.com/AmbaPay/Amba-events.git production
Success Exit: 0
Output:
Updating 9ba5ea2..11b6367
Fast-forward
 prisma/schema.prisma                       | 158 +++++--
 src/api/index.ts                           |   2 -
 src/api/routes/event.route.ts              |  13 +-
 src/api/routes/notification.route.ts       |  48 --
 src/api/routes/organizer.route.ts          |   2 +-
 src/api/routes/poll.route.ts               |   6 +-
 src/controllers/event.controller.ts        |  71 +--
 src/controllers/notification.controller.ts |  92 ----
 src/controllers/poll.controller.ts         |   6 +-
 src/services/event.service.ts              | 714 ++++++++++++++++++++++++-----
 src/services/notification.service.ts       |  61 ---
 src/services/poll.service.ts               |   4 +-
 src/validations/event.validation.ts        | 116 +++--
 13 files changed, 853 insertions(+), 440 deletions(-)
 delete mode 100644 src/api/routes/notification.route.ts
 delete mode 100644 src/controllers/notification.controller.ts
 delete mode 100644 src/services/notification.service.ts
Error:
fatal: unable to bind to '/home/amba/.cache/git/credential/socket': Read-only file system
warning: unable to unlink '/home/amba/.cache/git/credential/socket': Read-only file system
fatal: cache daemon did not start: 
From https://gitea.yaltopia.com/AmbaPay/Amba-events
 * branch            production -> FETCH_HEAD
git rev-parse HEAD
Success Exit: 0
Output:
11b6367425574bf41d1e26cd12c8fb326cc4de76
git diff --name-only 9ba5ea280700aae03dc0d16ab7ebef4c4080a5f3 11b6367425574bf41d1e26cd12c8fb326cc4de76
Success Exit: 0
Output:
prisma/schema.prisma
src/api/index.ts
src/api/routes/event.route.ts
src/api/routes/notification.route.ts
src/api/routes/organizer.route.ts
src/api/routes/poll.route.ts
src/controllers/event.controller.ts
src/controllers/notification.controller.ts
src/controllers/poll.controller.ts
src/services/event.service.ts
src/services/notification.service.ts
src/services/poll.service.ts
src/validations/event.validation.ts
npx prisma generate
Success Exit: 0
Output:
Prisma schema loaded from prisma/schema.prisma

āœ” Generated Prisma Client (v6.19.0) to ./node_modules/@prisma/client in 458ms

Start by importing your Prisma Client (See: https://pris.ly/d/importing-client)

Tip: Interested in query caching in just a few lines of code? Try Accelerate today! https://pris.ly/tip-3-accelerate

Error:
Loaded Prisma config from prisma.config.ts.

Prisma config detected, skipping environment variable loading.
npx prisma db push --accept-data-loss
Success Exit: 0
Output:
Prisma schema loaded from prisma/schema.prisma
Datasource "db": PostgreSQL database "amba_events", schema "public" at "localhost:5432"

šŸš€  Your database is now in sync with your Prisma schema. Done in 564ms

Running generate... (Use --skip-generate to skip the generators)
Running generate... - Prisma Client
āœ” Generated Prisma Client (v6.19.0) to ./node_modules/@prisma/client in 359ms

Error:
Loaded Prisma config from prisma.config.ts.

Prisma config detected, skipping environment variable loading.
npm install --include=dev
Success Exit: 0
Output:
up to date, audited 637 packages in 2s

77 packages are looking for funding
  run `npm fund` for details

21 vulnerabilities (5 low, 1 moderate, 13 high, 2 critical)

To address issues that do not require attention, run:
  npm audit fix

To address all issues possible (including breaking changes), run:
  npm audit fix --force

Some issues need review, and may require choosing
a different dependency.

Run `npm audit` for details.
npm run build
Failed Exit: 2
Output:
> event-management-be@1.0.0 build
> tsc

src/api/routes/temp.route.ts(14,23): error TS2769: No overload matches this call.
  The last overload gave the following error.
    Argument of type '(req: Request, res: Response) => Promise<Response<any, Record<string, any>>>' is not assignable to parameter of type 'Application<Record<string, any>>'.
      Type '(req: Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, res: Response<any, Record<string, any>>) => Promise<...>' is missing the following properties from type 'Application<Record<string, any>>': init, defaultConfiguration, engine, set, and 63 more.