Skip to content

Commit b1eb169

Browse files
fix: Update script paths for quota check in deploy-v2 workflow
1 parent 3523ffa commit b1eb169

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/deploy-v2.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -289,10 +289,10 @@ jobs:
289289
export GPT_MIN_CAPACITY=${{ env.GPT_MIN_CAPACITY }}
290290
export AZURE_REGIONS="${{ vars.AZURE_REGIONS }}"
291291
292-
chmod +x scripts/checkquota.sh
293-
if ! scripts/checkquota.sh; then
292+
chmod +x infra/scripts/checkquota.sh
293+
if ! infra/scripts/checkquota.sh; then
294294
# If quota check fails due to insufficient quota, set the flag
295-
if grep -q "No region with sufficient quota found" scripts/checkquota.sh; then
295+
if grep -q "No region with sufficient quota found" infra/scripts/checkquota.sh; then
296296
echo "QUOTA_FAILED=true" >> $GITHUB_ENV
297297
fi
298298
exit 1 # Fail the pipeline if any other failure occurs

0 commit comments

Comments
 (0)