File tree 3 files changed +4
-8
lines changed 3 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -26,10 +26,10 @@ jobs:
26
26
export TEXT_EMBEDDING_MIN_CAPACITY="45"
27
27
export AZURE_REGIONS="${{ vars.AZURE_REGIONS_CA }}"
28
28
29
- chmod +x scripts/checkquota.sh
30
- if ! scripts/checkquota.sh; then
29
+ chmod +x infra/ scripts/checkquota.sh
30
+ if ! infra/ scripts/checkquota.sh; then
31
31
# If quota check fails due to insufficient quota, set the flag
32
- if grep -q "No region with sufficient quota found" scripts/checkquota.sh; then
32
+ if grep -q "No region with sufficient quota found" infra/ scripts/checkquota.sh; then
33
33
echo "QUOTA_FAILED=true" >> $GITHUB_ENV
34
34
fi
35
35
exit 1 # Fail the pipeline if any other failure occurs
Original file line number Diff line number Diff line change 56
56
'@semantic-release/github'
57
57
]
58
58
env :
59
- GITHUB_TOKEN : ${{ secrets.TOKEN }}
59
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
60
60
- run : echo ${{ steps.semantic.outputs.release-version }}
61
61
62
62
- run : echo "$OUTPUTS"
Original file line number Diff line number Diff line change 1
1
name : Azure Template Validation
2
2
on :
3
- push :
4
- branches :
5
- - dev
6
- - main
7
3
workflow_dispatch :
8
4
9
5
permissions :
You can’t perform that action at this time.
0 commit comments