From c544f9e2d34b7cc2d95303b376e21006580271fe Mon Sep 17 00:00:00 2001 From: kavi castelo <85213722+kavicastelo@users.noreply.github.com> Date: Tue, 23 Apr 2024 23:23:42 +0530 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2eb055c0..ee7579df 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,9 @@ jobs: npm install --force - name: Build frontend - run: npm run build -- --prod + run: | + cd client + npm run build -- --prod build-backend: runs-on: ubuntu-latest @@ -30,9 +32,9 @@ jobs: uses: actions/setup-java@v2 with: distribution: 'adopt' - java-version: '15' + java-version: '17' - name: Build backend run: | - chmod +x mvnw + ./chmod +x mvnw ./mvnw clean package