1 parent 71a5a3e commit 1d79c40Copy full SHA for 1d79c40
1 file changed
.github/actions/deploy-env/action.yml
@@ -26,6 +26,9 @@ inputs:
26
gitops-repo:
27
description: "Owner/name of the GitOps repository"
28
required: true
29
+ target-environment:
30
+ description: "EKs env"
31
+ required: true
32
33
# ── K8s / AWS ─────────────────────────────────────────────────────────────
34
eks-cluster-name:
@@ -114,7 +117,7 @@ runs:
114
117
run: |
115
118
docker run --rm --user root -v "$PWD/_gitops:/gitops" mikefarah/yq:4 \
116
119
e '.backend.image.tag = "${{ inputs.image-tag }}" | .frontend.image.tag = "${{ inputs.image-tag }}"' \
- -i /gitops/environments/${{ inputs.gitops-env }}/values.yaml
120
+ -i /gitops/environments/${{ inputs.target-environment }}/values.yaml
121
122
- name: "Commit & push GitOps change"
123
shell: bash
0 commit comments