From 2e604f1c6f72fb69d81dcf428ae071827172c862 Mon Sep 17 00:00:00 2001 From: vickytechkey Date: Sun, 6 Sep 2026 15:13:35 +0530 Subject: [PATCH] ci: configure node:22-alpine container with git and update database host IP in beta workflow --- .forgejo/workflows/beta.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/beta.yml b/.forgejo/workflows/beta.yml index 1dba913..b1c05ba 100644 --- a/.forgejo/workflows/beta.yml +++ b/.forgejo/workflows/beta.yml @@ -8,7 +8,12 @@ on: jobs: deploy: runs-on: ubuntu-latest + container: + image: node:22-alpine steps: + - name: Install git + run: apk add --no-cache git + - name: Checkout Code uses: https://github.com/actions/checkout@v4 @@ -78,7 +83,7 @@ jobs: echo "DEBUG=0" > .env echo "DB_USER=vignesh" >> .env echo "DB_PASSWORD=vtechnosoft@123A" >> .env - echo "DB_HOST=127.0.0.1" >> .env + echo "DB_HOST=16.113.106.152" >> .env echo "DB_PORT=5432" >> .env # ── 6. Run Database Migrations ─────────────────────────────────