Skip to content

Commit fa18eda

Browse files
Fix typo in deployment - will also trigger deploy to see if internal AWS issue is resolved upstream
Signed-off-by: Lukasz Gryglicki <[email protected]> Assisted by [OpenAI](https://platform.openai.com/) Assisted by [GitHub Copilot](https://github.com/features/copilot)
1 parent aeebdae commit fa18eda

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/deploy-dev.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ jobs:
164164
echo "Validating v2 backend using endpoint: ${v2_url}"
165165
curl --fail -XGET ${v2_url}
166166
exit_code=$?
167-
if [[ ${exit_coe} -eq 0 ]]; then
167+
if [[ ${exit_code} -eq 0 ]]; then
168168
echo "Successful response from endpoint: ${v2_url}"
169169
else
170170
echo "Failed to get a successful response from endpoint: ${v2_url}"
@@ -174,7 +174,7 @@ jobs:
174174
echo "Validating v3 backend using endpoint: ${v3_url}"
175175
curl --fail -XGET ${v3_url}
176176
exit_code=$?
177-
if [[ ${exit_coe} -eq 0 ]]; then
177+
if [[ ${exit_code} -eq 0 ]]; then
178178
echo "Successful response from endpoint: ${v3_url}"
179179
# JSON response should include "Status": "healthy"
180180
if [[ `curl -s -XGET ${v3_url} | jq -r '.Status'` == "healthy" ]]; then
@@ -207,7 +207,7 @@ jobs:
207207
echo "Validating v4 backend using endpoint: ${v4_url}"
208208
curl --fail -XGET ${v4_url}
209209
exit_code=$?
210-
if [[ ${exit_coe} -eq 0 ]]; then
210+
if [[ ${exit_code} -eq 0 ]]; then
211211
echo "Successful response from endpoint: ${v4_url}"
212212
# JSON response should include "Status": "healthy"
213213
if [[ `curl -s -XGET ${v4_url} | jq -r '.Status'` == "healthy" ]]; then

.github/workflows/deploy-prod.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
echo "Validating v2 backend using endpoint: ${v2_url}"
131131
curl --fail -XGET ${v2_url}
132132
exit_code=$?
133-
if [[ ${exit_coe} -eq 0 ]]; then
133+
if [[ ${exit_code} -eq 0 ]]; then
134134
echo "Successful response from endpoint: ${v2_url}"
135135
else
136136
echo "Failed to get a successful response from endpoint: ${v2_url}"
@@ -140,7 +140,7 @@ jobs:
140140
echo "Validating v3 backend using endpoint: ${v3_url}"
141141
curl --fail -XGET ${v3_url}
142142
exit_code=$?
143-
if [[ ${exit_coe} -eq 0 ]]; then
143+
if [[ ${exit_code} -eq 0 ]]; then
144144
echo "Successful response from endpoint: ${v3_url}"
145145
# JSON response should include "Status": "healthy"
146146
if [[ `curl -s -XGET ${v3_url} | jq -r '.Status'` == "healthy" ]]; then
@@ -172,7 +172,7 @@ jobs:
172172
echo "Validating v4 backend using endpoint: ${v4_url}"
173173
curl --fail -XGET ${v4_url}
174174
exit_code=$?
175-
if [[ ${exit_coe} -eq 0 ]]; then
175+
if [[ ${exit_code} -eq 0 ]]; then
176176
echo "Successful response from endpoint: ${v4_url}"
177177
# JSON response should include "Status": "healthy"
178178
if [[ `curl -s -XGET ${v4_url} | jq -r '.Status'` == "healthy" ]]; then

0 commit comments

Comments
 (0)