Skip to content

Commit

Permalink
Fix incorrect paths in cicd.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
a26blass committed Apr 29, 2024
1 parent 2b3f229 commit 65f7472
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 65f7472

Please sign in to comment.