Skip to content

Commit

Permalink
chore: Verify Resource Group existence in Azure infrastructure workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mlhaufe committed Jul 25, 2024
1 parent 80b0cae commit d961496
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/azure-infra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ jobs:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
# Temporary step to verify the resource group
# It exists, but is not being seen by the next step
- name: Verify Resource Group
run: |
az group show --name ${{ secrets.AZURE_RG }} --subscription ${{ secrets.AZURE_SUBSCRIPTION_ID }}
- name: Lint Bicep
run: |
az bicep build --file ./azure/bicep/main.bicep
Expand Down

0 comments on commit d961496

Please sign in to comment.