Skip to content

Commit

Permalink
Update ingestion_client.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
HenryvanderVegte committed Sep 18, 2024
1 parent 424d1a5 commit 7974e2d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ingestion_client.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,12 @@ jobs:
- name: Install Bicep CLI
run: |
if ! command -v az bicep &> /dev/null; then
az bicep install --version v0.29.47
else
az bicep upgrade
BICEP_VERSION="v0.29.47"
if ! command -v az bicep &> /dev/null || [ "$(az bicep version --query 'bicepVersion' -o tsv)" != "$BICEP_VERSION" ]; then
az bicep install --version "$BICEP_VERSION"
fi
az bicep version
- name: Convert Bicep to ARM Template
Expand Down

0 comments on commit 7974e2d

Please sign in to comment.