Skip to content

Commit 2a1c25c

Browse files
committed
Fix staging/production redeploy
The workflow simply referenced the built image tage, adding the digest ensures helm detects changes and redeploys when a new image is built.
1 parent 5760480 commit 2a1c25c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
needs: build
1818
uses: ./.github/workflows/_deploy.yml
1919
with:
20-
image_tag: ${{ needs.build.outputs.image_tag }}
20+
image_tag: '${{ needs.build.outputs.image_tag }}@${{ needs.build.outputs.image_digest }}'
2121
deployment_name: vela
2222
environment: ${{ github.ref_name == 'main' && 'prod' || 'dev' }}
2323
secrets: inherit

0 commit comments

Comments
 (0)