Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/CAdeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
export TEXT_EMBEDDING_MIN_CAPACITY="45"
export AZURE_REGIONS="${{ vars.AZURE_REGIONS_CA }}"

chmod +x scripts/checkquota.sh
if ! scripts/checkquota.sh; then
chmod +x infra/scripts/checkquota.sh
if ! infra/scripts/checkquota.sh; then
# If quota check fails due to insufficient quota, set the flag
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
echo "QUOTA_FAILED=true" >> $GITHUB_ENV
fi
exit 1 # Fail the pipeline if any other failure occurs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Create-Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
'@semantic-release/github'
]
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: echo ${{ steps.semantic.outputs.release-version }}

- run: echo "$OUTPUTS"
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/azure-dev-validation.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
name: Azure Template Validation
on:
push:
branches:
- dev
- main
workflow_dispatch:

permissions:
Expand Down