chore: fix env var replacement

This commit is contained in:
Karol Sójko 2023-10-04 16:43:43 +02:00
parent 18dae26b8e
commit a25eb178c5
No known key found for this signature in database
GPG key ID: C2F813669419D05F

View file

@ -40,7 +40,7 @@ jobs:
- name: Fill in the new package version in the Amazon ECS task definition
run: |
jq '(.containerDefinitions[] | select(.name=="${{ inputs.service_name }}-prod") | .environment[] | select(.name=="NPM_PACKAGE_VERSION")).value = "${{ github.sha }}"' task-definition.json > tmp.json && mv tmp.json task-definition.json
jq '(.containerDefinitions[] | select(.name=="${{ inputs.service_name }}-prod") | .environment[] | select(.name=="npm_package_version")).value = "${{ github.sha }}"' task-definition.json > tmp.json && mv tmp.json task-definition.json
- name: Fill in the new image ID in the Amazon ECS task definition
id: task-def-prod