Skip to content
This repository was archived by the owner on Jun 3, 2026. It is now read-only.

Commit fd8732e

Browse files
committed
fix: remove /v1 prefix from auth smoke test
1 parent e5ab39f commit fd8732e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/deploy-staging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ jobs:
187187
188188
- name: API contract — auth endpoints exist
189189
run: |
190-
HTTP_CODE=$(curl -s -o /dev/null -w "%{http_code}" "${{ vars.STAGING_URL }}/v1/auth/google")
190+
HTTP_CODE=$(curl -s -o /dev/null -w "%{http_code}" "${{ vars.STAGING_URL }}/auth/google")
191191
echo "Auth endpoint returned: $HTTP_CODE"
192192
# 307 (redirect) or 405 (method not allowed) are both valid — means route exists
193193
if [ "$HTTP_CODE" = "404" ]; then

0 commit comments

Comments
 (0)