Skip to content

Commit ff90a5d

Browse files
committed
Fix Gen ai secrets names
1 parent d88b593 commit ff90a5d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/deploy-genai-backend.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@ jobs:
132132
helm upgrade --install ${{ env.HELM_RELEASE_NAME }} ${{ env.CHART_PATH }} \
133133
--namespace ${{ env.HELM_NAMESPACE }} \
134134
--set genaiBackend.image.tag=${{ env.IMAGE_TAG }} \
135-
--set secrets.genai.data.openWebUiApiKeyChat="${{ secrets.OPENWEBUI_API_KEY_CHAT }}" \
136-
--set secrets.genai.data.openWebUiApiKeyGen="${{ secrets.OPENWEBUI_API_KEY_GEN }}" \
135+
--set secrets.genai.data.openWebUiApiKeyChat="${{ secrets.OPEN_WEBUI_API_KEY_CHAT }}" \
136+
--set secrets.genai.data.openWebUiApiKeyGen="${{ secrets.OPEN_WEBUI_API_KEY_GEN }}" \
137137
--set secrets.genai.data.langsmithApiKey="${{ secrets.LANGSMITH_API_KEY }}" \
138138
--wait --timeout=5m
139139

.github/workflows/deploy-ingress.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ on:
44
push:
55
branches: [main]
66
paths:
7-
- 'client-ingress.yaml'
7+
- 'infra/helm-charts/ingress/**'
88
- '.github/workflows/deploy-ingress.yml'
99
pull_request:
1010
types: [opened, synchronize, reopened]
1111
paths:
12-
- 'client-ingress.yaml'
12+
- 'infra/helm-charts/ingress/**'
1313
- '.github/workflows/deploy-ingress.yml'
1414
workflow_dispatch:
1515
inputs:

0 commit comments

Comments
 (0)