We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85e0b4a commit 97f732fCopy full SHA for 97f732f
1 file changed
.github/workflows/cicd.yaml
@@ -34,6 +34,14 @@ jobs:
34
needs: docker-build
35
steps:
36
- uses: actions/checkout@v4
37
+ - name: Modify helm values file
38
+ shell: bash
39
+ env:
40
+ SHORT_SHA: ${{ needs.docker-build.outputs.short_sha }}
41
+ run: |
42
+ echo ${{ env.SHORT_SHA }}
43
+ pip install yq
44
+ yq -Yi 'image.tag = "${{ env.SHORT_SHA }}"' charts/python-app/values.yaml
45
- name: Install argocd CLI
46
shell: bash
47
run: |
0 commit comments