From 65f7472265e4b099b246ace6da4d668174d856da Mon Sep 17 00:00:00 2001 From: a26blass Date: Mon, 29 Apr 2024 15:36:33 -0400 Subject: [PATCH] Fix incorrect paths in cicd.yaml --- .github/workflows/cicd.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cicd.yaml b/.github/workflows/cicd.yaml index 1189545..d8076de 100644 --- a/.github/workflows/cicd.yaml +++ b/.github/workflows/cicd.yaml @@ -34,7 +34,7 @@ jobs: uses: tj-actions/changed-files@v41 with: files: | - src/main/helm/** + helm/** outputs: site-changed: ${{ steps.changed-site-files.outputs.any_changed }} infra-changed: ${{ steps.changed-infra-files.outputs.any_changed }} @@ -81,7 +81,7 @@ jobs: - name: Update deployment if: needs.check-changed-files.outputs.site-changed == 'true' run: | - sed -i 's|image:.*|image: gcr.io/${{ env.GCP_PROJECT_ID }}/${{ env.IMAGE_NAME }}:${{ env.DOCKER_TAG }}|' src/main/helm/templates/deployment.yaml + sed -i 's|image:.*|image: gcr.io/${{ env.GCP_PROJECT_ID }}/${{ env.IMAGE_NAME }}:${{ env.DOCKER_TAG }}|' helm/templates/deployment.yaml - name: Authenticate to Google Cloud uses: google-github-actions/auth@v2 with: