From 81053b56a38d9b25beb20f10f3fffc5bf6c61f49 Mon Sep 17 00:00:00 2001 From: vivek6219 Date: Sun, 3 Mar 2024 02:36:06 -0800 Subject: [PATCH] Dockerized and built pipelines --- .github/workflows/cicd.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 64c5be5..6ac99e6 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -18,7 +18,9 @@ jobs: java-version: '17' - name: Build Project - run: mvn clean install -DskipTests + run: + cd geodata + mvn clean install -DskipTests - name: Login to dockerhub run: docker login -u ${{secrets.DOCKER_USERNAME}} -p ${{secrets.DOCKER_PASSWORD}}