ci: configure node:22-alpine container with git and update database host IP in beta workflow
All checks were successful
Deploy Beta (NATIVE) / deploy (push) Successful in 1m4s
All checks were successful
Deploy Beta (NATIVE) / deploy (push) Successful in 1m4s
This commit is contained in:
parent
7949cc2d36
commit
2e604f1c6f
1 changed files with 6 additions and 1 deletions
|
|
@ -8,7 +8,12 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
deploy:
|
deploy:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: node:22-alpine
|
||||||
steps:
|
steps:
|
||||||
|
- name: Install git
|
||||||
|
run: apk add --no-cache git
|
||||||
|
|
||||||
- name: Checkout Code
|
- name: Checkout Code
|
||||||
uses: https://github.com/actions/checkout@v4
|
uses: https://github.com/actions/checkout@v4
|
||||||
|
|
||||||
|
|
@ -78,7 +83,7 @@ jobs:
|
||||||
echo "DEBUG=0" > .env
|
echo "DEBUG=0" > .env
|
||||||
echo "DB_USER=vignesh" >> .env
|
echo "DB_USER=vignesh" >> .env
|
||||||
echo "DB_PASSWORD=vtechnosoft@123A" >> .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
|
echo "DB_PORT=5432" >> .env
|
||||||
|
|
||||||
# ── 6. Run Database Migrations ─────────────────────────────────
|
# ── 6. Run Database Migrations ─────────────────────────────────
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue