We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3523ffa commit b1eb169Copy full SHA for b1eb169
1 file changed
.github/workflows/deploy-v2.yml
@@ -289,10 +289,10 @@ jobs:
289
export GPT_MIN_CAPACITY=${{ env.GPT_MIN_CAPACITY }}
290
export AZURE_REGIONS="${{ vars.AZURE_REGIONS }}"
291
292
- chmod +x scripts/checkquota.sh
293
- if ! scripts/checkquota.sh; then
+ chmod +x infra/scripts/checkquota.sh
+ if ! infra/scripts/checkquota.sh; then
294
# 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
+ if grep -q "No region with sufficient quota found" infra/scripts/checkquota.sh; then
296
echo "QUOTA_FAILED=true" >> $GITHUB_ENV
297
fi
298
exit 1 # Fail the pipeline if any other failure occurs
0 commit comments