diff --git a/.github/workflows/gcp_deployment.yaml b/.github/workflows/gcp_deployment.yaml index 09143c5..d90f513 100644 --- a/.github/workflows/gcp_deployment.yaml +++ b/.github/workflows/gcp_deployment.yaml @@ -9,7 +9,7 @@ on: env: PROJECT_ID: awwwards-clone-project REGION: asia-south1 - REPOSITORY: asia-south1/docker.pkg.dev/awwwards-clone-project/awwwards-clone-repo/awwwards-clone + REPOSITORY: asia-south1-docker.pkg.dev/awwwards-clone-project/awwwards-clone-repo/awwwards-clone jobs: deploy_to_artifact_registry: @@ -22,12 +22,12 @@ jobs: # Install Dependencies for the application - name: Install Dependencies run: npm install - working-directory: ./Awwwards/Awwwards + working-directory: /home/runner/work/Awwwards/Awwwards # Building the application - name: Build Application run: npm run build - working-directory: ./Awwwards/Awwwards + working-directory: /home/runner/work/Awwwards/Awwwards # Authenticate with GCP - name: Authenticate with GCP @@ -52,8 +52,7 @@ jobs: - name: Build image run: docker build . --file Dockerfile --tag ${{ env.REPOSITORY }} - working-directory: ./Awwwards/Awwwards - + working-directory: /home/runner/work/Awwwards/Awwwards - name: Push image