Update sgeupdated pipeline v11
All checks were successful
sgeUpdated Smoke Test / smoke-test (push) Successful in 6s

This commit is contained in:
2025-08-30 01:28:12 +03:00
parent 986bec559b
commit 926c6b0b66

View File

@@ -36,12 +36,11 @@ jobs:
echo "Backend changes detected..." echo "Backend changes detected..."
cd sge-backend cd sge-backend
mvn clean install mvn clean install
docker build --no-cache -t bgreen-backend .
cd .. cd ..
docker build -t bgreen-backend ./sge-backend
docker compose up -d --force-recreate backend docker compose up -d --force-recreate backend
fi fi
# --- Frontend --- # --- Frontend ---
if echo "${CHANGED_FILES}" | grep -q "sge-frontend"; then if echo "${CHANGED_FILES}" | grep -q "sge-frontend"; then
echo "Frontend changes detected..." echo "Frontend changes detected..."
@@ -51,7 +50,8 @@ jobs:
npm install npm install
fi fi
npm run build npm run build
docker build --no-cache -t bgreen-frontend .
cd .. cd ..
docker build -t bgreen-frontend ./sge-frontend
docker compose up -d --force-recreate frontend docker compose up -d --force-recreate frontend
fi fi