We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8b1381e + a258d51 commit a14cd87Copy full SHA for a14cd87
1 file changed
.github/workflows/deploy.yml
@@ -154,7 +154,10 @@ jobs:
154
run: |
155
set -euo pipefail
156
URL=$(gcloud run services describe idc-api-v3 --project "$PROJECT" --region "$REGION" --format='value(status.url)')
157
- curl -sf "$URL/health"; echo
+ # All REST routes live under /v3 (health included); the *.run.app URL has no LB/ESP in
158
+ # front, so these hit the container directly.
159
+ curl -sf "$URL/v3/health"; echo
160
+ curl -sf "$URL/v3/version"; echo
161
{
162
echo "### REST API deployed to ${{ inputs.environment }}"
163
echo "- URL: $URL"
0 commit comments