We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3a6b6a commit 028456fCopy full SHA for 028456f
1 file changed
.github/workflows/deploy.yml
@@ -159,9 +159,10 @@ jobs:
159
- name: Get Container App Backend URL
160
id: get_backend_url
161
run: |
162
+ # Get specifically the backend container app (not the MCP container app)
163
CONTAINER_APP_NAME=$(az containerapp list \
164
--resource-group ${{ env.RESOURCE_GROUP_NAME }} \
- --query "[0].name" -o tsv)
165
+ --query "[?starts_with(name, 'ca-') && !contains(name, 'mcp')].name" -o tsv)
166
167
MACAE_URL_API=$(az containerapp show \
168
--name "$CONTAINER_APP_NAME" \
0 commit comments