Skip to content

Commit 09000fc

Browse files
committed
fix(gh-actions): 🐛 Fix infra uppercase variable
1 parent 3e7ab46 commit 09000fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/deploy-chatbot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
exit 1
102102
;;
103103
esac
104-
INFRA_UPPER=$(echo "${{steps.parse_command.outputs.environment }}" | tr 'a-z' 'A-Z')
104+
INFRA_UPPER=$(echo "${{steps.parse_command.outputs.infra }}" | tr 'a-z' 'A-Z')
105105
ENV_UPPER=$(echo "${{ steps.parse_command.outputs.environment }}" | tr 'a-z' 'A-Z')
106106
107107
secret_name="SS_${INFRA_UPPER}_${ENV_UPPER}"

0 commit comments

Comments
 (0)